| 3 | | INSERT INTO product (price, availability, weight, width_x_length_x_depth, aprox_production_time, description, delivery_cost) VALUES |
| 4 | | (700, 50, 2.5, '30x20x10', 10, 'Handmade wooden chair with oak wood', 50), |
| 5 | | (150, 10, 0.2, '20x20x15', 2, 'Heart crochet', 0), |
| 6 | | (199, 100, 0.75, '40x40x1', 14, 'Decorative wall hanging made with beads', 0); |
| | 3 | INSERT INTO product (product_code, price, availability, weight, width_x_length_x_depth, aprox_production_time, description, delivery_cost) VALUES |
| | 4 | (00100001, 700, 50, 2.5, '30x20x10', 10, 'Handmade wooden chair with oak wood', 50), |
| | 5 | (00200001, 150, 10, 0.2, '20x20x15', 2, 'Heart crochet', 0), |
| | 6 | (00200002, 199, 100, 0.75, '40x40x1', 14, 'Decorative wall hanging made with beads', 0); |
| 28 | | INSERT INTO store (name, date_of_founding, physical_address, store_email, rating) VALUES |
| 29 | | ('WoodCraft Skopje', '2015-03-12', 'st.Ilindenska 45, Skopje 1000, Macedonia', 'contact@woodcraft.mk', 4.6), |
| 30 | | ('Fox Crochets', '2023-06-01', 'st.Kej Makedonija 12, Ohrid 6000, Macedonia', 'ohrid@woodcraft.mk', 4.8); |
| | 29 | INSERT INTO store (store_id, name, date_of_founding, physical_address, store_email, rating) VALUES |
| | 30 | (001, 'WoodCraft Skopje', '2015-03-12', 'st.Ilindenska 45, Skopje 1000, Macedonia', 'contact@woodcraft.mk', 4.6), |
| | 31 | (002, 'Fox Crochets', '2023-06-01', 'st.Kej Makedonija 12, Ohrid 6000, Macedonia', 'ohrid@woodcraft.mk', 4.8); |
| 42 | | ('1234567890123', 'BOSS', 'FULL'), |
| 43 | | ('9876543210987', 'EMPLOYEE', 'LIMITED'), |
| 44 | | ('4567891234567', 'BOSS', 'FULL'); |
| | 43 | ('1234567890123', 'BOSS', 'admin'), |
| | 44 | ('9876543210987', 'EMPLOYEE', 'M.Petrovski'), |
| | 45 | ('4567891234567', 'BOSS', 'admin'); |
| 59 | | INSERT INTO client (first_name, last_name, email, password) VALUES |
| 60 | | ('Ivan', 'Stojanov', 'ivan@gmail.com', 'ivanpass'), |
| 61 | | ('Marija', 'Kostova', 'marija@yahoo.com', 'marijapass'); |
| | 60 | INSERT INTO client (client_ID, first_name, last_name, email, password) VALUES |
| | 61 | (1, 'Ivan', 'Stojanov', 'ivan@gmail.com', 'hkh689gvgsh%hd'), -- hash value of the passwords |
| | 62 | (2, 'Marija', 'Kostova', 'marija@yahoo.com', 'PJdbbh334$djk-hs'), -- hash value of the passwords |
| | 63 | (3, 'Antoneta', 'Mariovska', 'mariovskaantoneta@finki.ukim.mk', '*bxhc6cbsd3@xh'); -- hash value of the password |
| 71 | | INSERT INTO "order" (order_num, client_ID, quantity, status, last_date_mod, payment_method, discount) VALUES |
| 72 | | (1, 1, 2, 'placed order', '2025-12-01 10:15:00', 'credit card ****6750', 0.0), |
| 73 | | (2, 1, 2, 'packaging', '2025-12-10 18:00:00', 'PayPal account *******', 0.0), |
| 74 | | (3, 2, 1, 'delivered', '2025-12-02 14:30:00', 'cash', 4.0); |
| | 74 | INSERT INTO "order" (order_num, client_ID, status, last_date_mod, payment_method, discount) VALUES |
| | 75 | (0022025000001, 1, 'placed order', '2025-12-01 10:15:00', 'credit card ****6750', 0.0), |
| | 76 | (0022025000002, 1, 'packaging', '2025-12-10 18:00:00', 'PayPal account *******', 0.0), |
| | 77 | (0012025000001, 2, 'delivered', '2025-12-02 14:30:00', 'cash', 4.0); |
| 79 | | ('2024-11-30 23:59:59', 1, 125000.00, 'Increasing', 'Stable growth', 'M.Petrovski'), |
| 80 | | ('2024-11-30 23:59:59', 2, 98000.00, 'Stable', 'Moderate growth', 'S.Vaneva'); |
| | 82 | ('2024-11-30 23:59:59', 001, 125000.00, 'Increasing', 'Stable growth', 'M.Petrovski'), |
| | 83 | ('2024-11-30 23:59:59', 002, 98000.00, 'Stable', 'Moderate growth', 'S.Vaneva'); |
| 85 | | ('2024-11-30 23:59:59', 1, '2024-11-01', 12500.00), |
| 86 | | ('2024-11-30 23:59:59', 2, '2024-11-01', 8000.00); |
| | 88 | ('2024-11-30 23:59:59', 001, '2024-11-01', 12500.00), |
| | 89 | ('2024-11-30 23:59:59', 002, '2024-11-01', 8000.00); |
| 91 | | (1, '2024-12-03 11:20:00', 'Late delivery', 'Apologized and offered discount', 4.0), |
| 92 | | (2, '2024-12-04 09:10:00', 'Military discount', 'Discount approved', 5.0); |
| | 94 | (001112025001, '2024-11-03 11:20:00', 'Late delivery', 'Apologized and offered discount', 4.0), |
| | 95 | (002122025001, '2024-12-04 09:10:00', 'Military discount', 'Discount approved', 5.0); |
| 118 | | ('2024-11-10 09:00:00', 1, 'Updated production time'), |
| 119 | | ('2024-11-12 15:30:00', 2, 'Added new color'); |
| | 121 | ('2024-11-10 09:00:00', 00100001, 'FROM aprox_production_time=14 TO aprox_production_time=10'), |
| | 122 | ('2024-11-12 15:30:00', 00200001, 'Added new color'); |
| 131 | | ('1234567890123', '2025-11-30 23:59:59', 1, 75, 'hourly', 48, '2025-11-24 - 2025-11-30'), |
| 132 | | ('9876543210987', '2025-11-30 23:59:59', 1, 75, 'hourly', 38, '2025-11-24 - 2025-11-30'), |
| 133 | | ('4567891234567', '2025-11-30 23:59:59', 2, 450, 'weekly', 52, '2025-11-24 - 2025-11-30'); |
| | 134 | ('1234567890123', '2025-11-30 23:59:59', 001, 75, 'hourly', 48, '2025-11-24 - 2025-11-30'), |
| | 135 | ('9876543210987', '2025-11-30 23:59:59', 001, 75, 'hourly', 38, '2025-11-24 - 2025-11-30'), |
| | 136 | ('4567891234567', '2025-11-30 23:59:59', 002, 450, 'weekly', 52, '2025-11-24 - 2025-11-30'); |
| 152 | | ('1234567890123', '2025-12-01 09:56:30', 1, 'M.Petrovski'), |
| 153 | | ('4567891234567', '2025-12-03 13:06:12', 2, 'S.Vaneva'); |
| | 155 | ('1234567890123', '2025-12-01 09:56:30', 001, 'M.Petrovski'), |
| | 156 | ('4567891234567', '2025-12-03 13:06:12', 002, 'S.Vaneva'); |
| 158 | | ('2024-11-30 23:59:59', 1, 38750.00, '2024-12-01 08:00:00', 52, 750), |
| 159 | | ('2024-11-30 23:59:59', 2, 26150, '2024-12-01 08:00:00', 40, NULL); |
| | 161 | ('2024-11-30 23:59:59', 001, 38750.00, '2024-12-01 08:00:00', 52, 750), |
| | 162 | ('2024-11-30 23:59:59', 002, 26150, '2024-12-01 08:00:00', 40, NULL); |