wiki:ProductCreation

Version 1 (modified by 235018, 13 hours ago) ( diff )

--

Product Creation

Actors: Registered Boss / Employee

1. The user selects “Create Product”.

2. Product information is entered.

3. The application inserts the product into product.

INSERT INTO product (code, price, availability, weight, width_x_length_x_depth, aprox_production_time, description, category_id, store_id) VALUES 
('00100001', 49.99, 20, 1.20, '20x15x10', 7, 'Handmade wooden box', 1, '001');

4. The colors in which the product is availabe are inseted into color.

INSERT INTO color (product_code, color) VALUES
('00100001', 'Red'),
('00100001', 'Black');

**5.** The images with the product are inserted into {{{image}}}.

{{{#!sql 
INSERT INTO image (product_code, image) VALUES
('00100001', 'Wooden-box-red_front.png'),
('00100001', 'Wooden-box-red_side.png'),
('00100001', 'Wooden-box-black_side.png');

}}}

**4.** Product is shown publicly with the other products.
Note: See TracWiki for help on using the wiki.