#
# TABLE STRUCTURE FOR: sma_addresses
#

DROP TABLE IF EXISTS `sma_addresses`;

CREATE TABLE `sma_addresses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` int(11) NOT NULL,
  `line1` varchar(50) NOT NULL,
  `line2` varchar(50) DEFAULT NULL,
  `city` varchar(25) NOT NULL,
  `postal_code` varchar(20) DEFAULT NULL,
  `state` varchar(25) NOT NULL,
  `country` varchar(50) NOT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `company_id` (`company_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_adjustment_items
#

DROP TABLE IF EXISTS `sma_adjustment_items`;

CREATE TABLE `sma_adjustment_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `adjustment_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `option_id` int(11) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `type` varchar(20) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `adjustment_id` (`adjustment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=236 DEFAULT CHARSET=utf8;

INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (1, 1, 15, 45, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (3, 3, 17, 95, '6.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (4, 3, 17, 98, '6.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (5, 3, 17, 102, '6.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (6, 4, 38, 122, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (7, 4, 38, 121, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (8, 4, 38, 120, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (9, 5, 59, 166, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (10, 5, 59, 167, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (11, 5, 59, 168, '6.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (12, 6, 122, 328, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (13, 7, 123, 329, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (14, 8, 37, 119, '22.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (15, 9, 37, 119, '44.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (16, 10, 91, 263, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (17, 10, 91, 264, '18.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (18, 10, 91, 265, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (19, 10, 91, 266, '15.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (20, 10, 91, 267, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (21, 11, 117, 319, '2.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (24, 13, 4, 13, '36.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (25, 14, 36, 112, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (26, 14, 36, 113, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (27, 14, 36, 114, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (28, 15, 34, 93, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (29, 15, 34, 94, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (30, 16, 97, 275, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (31, 16, 97, 276, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (32, 17, 138, 368, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (33, 18, 258, NULL, '18.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (34, 19, 298, NULL, '32.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (35, 19, 301, NULL, '27.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (36, 20, 328, NULL, '3.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (37, 21, 328, NULL, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (38, 22, 356, NULL, '1.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (39, 23, 359, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (40, 23, 360, NULL, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (41, 24, 355, NULL, '3.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (42, 25, 255, NULL, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (43, 26, 254, NULL, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (44, 27, 380, NULL, '5.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (45, 28, 401, NULL, '60.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (46, 28, 402, NULL, '60.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (47, 28, 403, NULL, '60.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (48, 28, 404, NULL, '60.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (49, 29, 405, NULL, '50.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (50, 30, 405, NULL, '2.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (51, 31, 410, NULL, '2.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (52, 32, 411, NULL, '2.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (57, 33, 410, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (58, 34, 412, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (63, 36, 423, NULL, '1.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (64, 35, 424, NULL, '12.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (65, 37, 428, NULL, '2.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (66, 38, 326, NULL, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (68, 40, 323, NULL, '9.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (70, 39, 435, NULL, '7.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (71, 39, 323, NULL, '18.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (72, 41, 144, 381, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (91, 42, 161, 399, '7.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (92, 42, 159, 397, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (93, 42, 160, 398, '11.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (94, 42, 332, NULL, '9.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (95, 42, 331, NULL, '11.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (96, 42, 158, 396, '9.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (97, 42, 329, NULL, '9.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (98, 42, 330, NULL, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (99, 42, 113, 302, '4.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (100, 42, 33, 91, '15.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (101, 42, 181, NULL, '18.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (103, 43, 23, 68, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (154, 44, 148, 386, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (155, 44, 13, 32, '10.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (156, 44, 13, 33, '10.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (157, 44, 12, 27, '9.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (158, 44, 12, 26, '9.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (159, 44, 24, 74, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (160, 44, 35, 103, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (161, 44, 38, 122, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (162, 44, 25, 78, '9.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (163, 44, 15, 46, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (164, 44, 15, 45, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (165, 44, 19, 61, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (166, 44, 19, 116, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (167, 44, 19, 117, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (175, 45, 82, 227, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (176, 45, 286, NULL, '18.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (177, 45, 408, NULL, '18.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (181, 46, 17, 55, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (182, 46, 14, 38, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (183, 46, 76, 205, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (184, 46, 73, 197, '8.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (186, 47, 555, NULL, '2.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (187, 47, 586, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (188, 48, 435, NULL, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (189, 48, 436, NULL, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (190, 49, 616, NULL, '5340.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (191, 49, 617, NULL, '2400.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (192, 49, 614, NULL, '2268.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (193, 49, 615, NULL, '30.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (194, 50, 245, NULL, '8.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (195, 51, 618, NULL, '475.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (204, 52, 599, NULL, '4.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (205, 52, 595, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (206, 52, 608, NULL, '5.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (207, 53, 623, NULL, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (208, 53, 625, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (209, 53, 633, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (211, 54, 642, NULL, '3.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (212, 54, 646, NULL, '1.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (213, 55, 595, NULL, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (215, 56, 838, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (216, 56, 823, NULL, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (217, 56, 824, NULL, '5.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (218, 57, 823, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (219, 57, 824, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (220, 58, 801, NULL, '1.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (221, 58, 797, NULL, '3.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (223, 59, 835, NULL, '2.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (224, 59, 840, NULL, '2.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (225, 60, 835, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (226, 60, 840, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (227, 61, 845, NULL, '864.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (228, 62, 854, NULL, '6.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (229, 63, 802, NULL, '10.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (230, 64, 833, NULL, '5.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (231, 65, 832, NULL, '20.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (232, 65, 830, NULL, '10.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (233, 66, 292, NULL, '12.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (234, 67, 891, NULL, '18.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (235, 68, 904, NULL, '15.0000', 1, '', 'addition');


#
# TABLE STRUCTURE FOR: sma_adjustments
#

DROP TABLE IF EXISTS `sma_adjustments`;

CREATE TABLE `sma_adjustments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `reference_no` varchar(55) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `note` text,
  `attachment` varchar(55) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `count_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `warehouse_id` (`warehouse_id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8;

INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (1, '2018-10-21 07:57:00', '2018/10/0001', 1, '&lt;p&gt;Forget to add&lt;&sol;p&gt;', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (3, '2018-10-21 09:06:00', '2018/10/0003', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (4, '2018-10-21 09:33:00', '2018/10/0004', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (5, '2018-10-21 11:38:00', '2018/10/0005', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (6, '2018-10-22 03:40:00', '2018/10/0006', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (7, '2018-10-22 03:45:00', '2018/10/0007', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (8, '2018-10-22 07:53:00', '2018/10/0008', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (9, '2018-10-22 07:54:00', '2018/10/0009', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (10, '2018-10-23 04:09:00', '2018/10/0010', 1, '&lt;p&gt;Wrong Stok&lt;&sol;p&gt;', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (11, '2018-10-23 04:36:00', '2018/10/0011', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (13, '2018-10-23 10:02:00', '2018/10/0013', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (14, '2018-10-23 16:43:00', '2018/10/0014', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (15, '2018-10-23 17:02:00', '2018/10/0015', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (16, '2018-10-23 17:05:00', '2018/10/0016', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (17, '2018-10-23 17:08:00', '2018/10/0017', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (18, '2018-11-02 09:02:00', '2018/11/0018', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (19, '2018-11-21 04:21:00', '2018/11/0019', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (20, '2018-11-24 05:56:00', '2018/11/0020', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (21, '2018-11-24 05:58:00', '2018/11/0021', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (22, '2018-12-22 07:36:00', '2018/12/0022', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (23, '2018-12-22 08:31:00', '2018/12/0023', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (24, '2018-12-22 08:44:00', '2018/12/0024', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (25, '2018-12-28 05:28:00', '2018/12/0025', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (26, '2018-12-28 05:28:00', '2018/12/0026', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (27, '2018-12-31 08:58:00', '2018/12/0027', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (28, '2019-01-12 08:46:00', '2019/01/0028', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (29, '2019-01-29 08:19:00', '2019/01/0029', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (30, '2019-01-29 08:20:00', '2019/01/0030', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (31, '2019-02-05 09:46:00', '2019/02/0031', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (32, '2019-02-05 09:47:00', '2019/02/0032', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (33, '2019-02-06 07:55:00', '2019/02/0033', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (34, '2019-02-06 08:00:00', '2019/02/0034', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (35, '2019-02-08 10:11:00', '2019/02/0035', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (36, '2019-02-09 03:42:00', '2019/02/0036', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (37, '2019-02-09 08:25:00', '2019/02/0037', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (38, '2019-03-04 04:55:00', '2019/03/0038', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (39, '2019-03-04 04:57:00', '2019/03/0039', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (40, '2019-03-04 04:57:00', '2019/03/0040', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (41, '2019-03-04 05:38:00', '2019/03/0041', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (42, '2019-03-04 06:55:00', '2019/03/0042', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (43, '2019-03-06 05:28:00', '2019/03/0043', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (44, '2019-03-06 07:01:00', '2019/03/0044', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (45, '2019-03-06 08:49:00', '2019/03/0045', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (46, '2019-03-08 04:24:00', '2019/03/0046', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (47, '2019-03-11 11:09:00', '2019/03/0047', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (48, '2019-03-20 08:06:00', '2019/03/0048', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (49, '2019-04-03 06:40:00', '2019/04/0049', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (50, '2019-04-06 09:57:00', '2019/04/0050', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (51, '2019-04-11 05:19:00', '2019/04/0052', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (52, '2019-04-12 05:08:00', '2019/04/0053', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (53, '2019-04-19 05:44:00', '2019/04/0054', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (54, '2019-04-25 04:26:00', '2019/04/0055', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (55, '2019-05-04 07:01:00', '2019/05/0056', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (56, '2019-08-14 04:20:00', '2019/08/0057', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (57, '2019-08-14 04:55:00', '2019/08/0058', 2, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (58, '2019-08-14 06:27:00', '2019/08/0059', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (59, '2019-08-21 03:22:00', '2019/08/0060', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (60, '2019-08-21 03:23:00', '2019/08/0061', 2, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (61, '2019-09-16 10:05:00', '2019/09/0062', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (62, '2019-09-21 04:25:00', '2019/09/0063', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (63, '2019-09-23 10:34:00', '2019/09/0064', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (64, '2019-09-23 11:13:00', '2019/09/0065', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (65, '2019-09-23 11:15:00', '2019/09/0066', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (66, '2019-09-24 09:15:00', '2019/09/0067', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (67, '2019-10-18 10:14:00', '2019/10/0068', 1, '', NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (68, '2019-10-18 10:39:00', '2019/10/0069', 1, '', NULL, 1, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_brands
#

DROP TABLE IF EXISTS `sma_brands`;

CREATE TABLE `sma_brands` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(20) DEFAULT NULL,
  `name` varchar(50) NOT NULL,
  `image` varchar(50) DEFAULT NULL,
  `slug` varchar(55) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `sma_brands` (`id`, `code`, `name`, `image`, `slug`, `description`) VALUES (1, 'JI', 'JI', NULL, 'ji', 'JI');
INSERT INTO `sma_brands` (`id`, `code`, `name`, `image`, `slug`, `description`) VALUES (2, 'G7', 'G7', NULL, 'g7', 'G-7');
INSERT INTO `sma_brands` (`id`, `code`, `name`, `image`, `slug`, `description`) VALUES (3, 'CH', 'CELESTIAL HORSE', NULL, 'celestial-horse', 'CELESTIAL HORSE');


#
# TABLE STRUCTURE FOR: sma_calendar
#

DROP TABLE IF EXISTS `sma_calendar`;

CREATE TABLE `sma_calendar` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(55) NOT NULL,
  `description` varchar(255) DEFAULT NULL,
  `start` datetime NOT NULL,
  `end` datetime DEFAULT NULL,
  `color` varchar(7) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_captcha
#

DROP TABLE IF EXISTS `sma_captcha`;

CREATE TABLE `sma_captcha` (
  `captcha_id` bigint(13) unsigned NOT NULL AUTO_INCREMENT,
  `captcha_time` int(10) unsigned NOT NULL,
  `ip_address` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT '0',
  `word` varchar(20) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`captcha_id`),
  KEY `word` (`word`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_categories
#

DROP TABLE IF EXISTS `sma_categories`;

CREATE TABLE `sma_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(55) NOT NULL,
  `name` varchar(55) NOT NULL,
  `image` varchar(55) DEFAULT NULL,
  `parent_id` int(11) DEFAULT NULL,
  `slug` varchar(55) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8;

INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1, 'BLT', 'Belt', NULL, 2, 'belt', 'Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (2, 'M', 'Men', NULL, 0, 'men', 'Men Category');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (3, 'W', 'Women', NULL, 0, 'women', 'Women Category');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (4, 'WLT', 'Wallet', NULL, 2, 'wallet', 'Wallet');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (5, 'JKT', 'Jacket', NULL, 2, 'jacket', 'Jacket');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (6, 'TB', 'Travelling Bag', NULL, 2, 'travelling-bag', 'Travelling Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (7, 'BK', 'Backpacks', NULL, 2, 'backpacks', 'Backpacks');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (8, 'SLP', 'Slippers', NULL, 2, 'slippers', 'Slippers');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (9, 'B', 'Kids - Boy', NULL, 0, 'kids-boy', 'Kids - Boy');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (10, 'KJKT', 'Jacket', NULL, 9, 'kidsjacket', 'Jacket');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (11, 'HB', 'Hand Bag', NULL, 2, 'hand-bag', 'Hand Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (12, 'OB', 'Office Bag', NULL, 2, 'office-bag', 'Office Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (13, 'SB', 'Side Bag', NULL, 2, 'side-bag', 'Side Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (14, 'LBLT', 'Leather Belt', NULL, 2, 'leather-belt', 'Leather Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (15, 'LWLT', 'Leather Wallet', NULL, 2, 'leather-wallet', 'Leather Wallet');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (16, 'IBLT', 'Italian Leather Belt', NULL, 2, 'italian-leather-belt', 'Italian Leather Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (17, 'IBB', 'Italian Brass Buckal', NULL, 2, 'italianbrass-buckal', 'Italian Brass Buckal');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (18, 'ISM', 'Italian Steel Bkl', NULL, 2, 'italian-steel-bkl', 'Italian Steel Buckal');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (21, 'IEL', 'Italian Limited edition ', NULL, 2, 'italian-limited-edition', 'Italian Limited edition ');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (22, 'ISB', 'Italian Stone Bkl', NULL, 2, 'italian-stone-bkl', 'Italian Stone Bkl');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (23, 'BBI', 'Indian Brass Buckal', NULL, 2, 'indian-brass-buckal', 'Indian Brass Buckal');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (24, 'ILB', ' Indian L Belt', NULL, 2, 'indian-l-belt', 'Indian L Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (25, 'LB', 'Lock Belt', NULL, 2, 'lock-belt', 'Lock Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (27, 'BBLT', 'Boy Belt', NULL, 9, 'boy-belt', 'Boy Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (28, 'CB', 'Cotton Belt', NULL, 2, 'cotton-belt', 'Cotton Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (29, 'IB', 'Imported Belt', NULL, 2, 'imported-belt', 'Imported Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (30, 'WLBLT', ' Leather Belt', NULL, 3, 'leather-belt1', 'Leather Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (31, 'WLB', 'Ladies Bag', NULL, 3, 'ladies-bag', 'Ladies Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (32, 'PWLT', 'Passport Wallet', NULL, 2, 'passport-wallet', 'Passport Wallet');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (33, 'CMB', 'Combo', NULL, 2, 'combo', 'Combo');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (34, 'NT', 'Neck Tie', NULL, 2, 'neck-tie', 'Neck Tie');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (35, 'BRP', 'Brooch Pin', NULL, 2, 'brooch-pin', 'Brooch Pin');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (36, 'CHB', 'Chest Bag', NULL, 2, 'chest-bag', 'Chest Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (37, 'LPB', 'Laptop Bag', NULL, 2, 'laptop-bag', 'Laptop Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (38, 'SLB', 'Sling Bag', NULL, 2, 'sling-bag', 'Sling Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (39, 'CFL', 'Cufflings', NULL, 2, 'cufflings', 'Cufflings');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (40, 'PB', 'PU Belt', NULL, 2, 'pu-belt', 'PU Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (41, 'SFC', 'Steel Fitting casual', NULL, 2, 'steel-fitting-casual', 'Steel Fitting casual');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (42, 'WMB', 'Mobile Bag', NULL, 3, 'mobile-bag', 'Mobile Bag');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (43, 'CBLT', 'Ceramic Belt', NULL, 2, 'ceramic-belt', 'Ceramic Belt');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (44, 'CWLT', 'Chain Wallet', NULL, 2, 'chain-wallet', 'Chain Wallet');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (45, 'WC', 'Calch', NULL, 3, 'calch', 'Calch');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (46, 'TS', 'T Shirt', NULL, 2, 't-shirt', 'T Shirt');


#
# TABLE STRUCTURE FOR: sma_challan_items
#

DROP TABLE IF EXISTS `sma_challan_items`;

CREATE TABLE `sma_challan_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `challan_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `challan_id` (`challan_id`),
  KEY `product_id` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=266 DEFAULT CHARSET=utf8;

INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5, 3, 2147483647, '1', 'key Wallet', 'manual', 0, '110.0000', '110.0000', '5.0000', 1, '0.0000', 1, '0', '10', '50.0000', '550.0000', NULL, '120.0000', 0, NULL, '5.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6, 3, 2147483647, '2', 'key Wallet', 'manual', 0, '120.0000', '120.0000', '4.0000', 1, '0.0000', 0, '', '10', '40.0000', '480.0000', NULL, '130.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7, 3, 2147483647, '3', 'key Wallet', 'manual', 0, '125.0000', '125.0000', '3.0000', 1, '0.0000', 0, '', '10', '30.0000', '375.0000', NULL, '135.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8, 3, 2147483647, '4', 'key Wallet', 'manual', 0, '135.0000', '135.0000', '4.0000', 1, '0.0000', 0, '', '10', '40.0000', '540.0000', NULL, '145.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9, 3, 2147483647, '5', 'key Wallet', 'manual', 0, '145.0000', '145.0000', '4.0000', 1, '0.0000', 0, '', '10', '40.0000', '580.0000', NULL, '155.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10, 3, 2147483647, '6', 'key Wallet', 'manual', 0, '150.0000', '150.0000', '4.0000', 1, '0.0000', 0, '', '10', '40.0000', '600.0000', NULL, '160.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11, 3, 2147483647, '7', 'key Wallet', 'manual', 0, '155.0000', '155.0000', '3.0000', 1, '0.0000', 0, '', '10', '30.0000', '465.0000', NULL, '165.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12, 3, 2147483647, '8', 'key Wallet', 'manual', 0, '165.0000', '165.0000', '3.0000', 1, '0.0000', 0, '', '10', '30.0000', '495.0000', NULL, '175.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13, 3, 2147483647, '9', 'key Wallet', 'manual', 0, '190.0000', '190.0000', '4.0000', 1, '0.0000', 0, '', '10', '40.0000', '760.0000', NULL, '200.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14, 3, 2147483647, '1', 'Card Holder', 'manual', 0, '140.0000', '140.0000', '5.0000', 1, '0.0000', 0, '', '10', '50.0000', '700.0000', NULL, '150.0000', 0, NULL, '5.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15, 3, 2147483647, '2', 'Card Holder', 'manual', 0, '145.0000', '145.0000', '1.0000', 1, '0.0000', 0, '', '10', '10.0000', '145.0000', NULL, '155.0000', 0, NULL, '1.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16, 3, 2147483647, '1', 'Buckal', 'manual', 0, '100.0000', '100.0000', '18.0000', 1, '0.0000', 0, '', '0', '0.0000', '1800.0000', NULL, '100.0000', 0, NULL, '18.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17, 4, 238, 'G7-M-JKT-0001', 'G7 Mens Jacket', 'standard', 0, '3135.5932', '3700.0000', '2.0000', 1, '1128.8136', 5, '18%', '2300', '4600.0000', '7400.0000', NULL, '6000.0000', 2, 'PCS', '2.0000', '9%', '564.4068', '564.4068', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18, 4, 239, 'G7-B-BJKT-0001', 'G7 Kids Jacket', 'standard', 0, '2711.8644', '3200.0000', '2.0000', 1, '976.2712', 5, '18%', '2300', '4600.0000', '6400.0000', NULL, '5500.0000', 2, 'PCS', '2.0000', '9%', '488.1356', '488.1356', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19, 5, 2147483647, '001', 'BELT BOX', 'manual', 0, '25.0000', '25.0000', '42.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1050.0000', NULL, '25.0000', 0, NULL, '42.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (20, 6, 319, 'JI-M-IB-0002-53', 'JI Imoported Belt-Cobra', 'standard', 0, '700.0000', '700.0000', '3.0000', 1, '0.0000', 1, '0', '950', '2850.0000', '2100.0000', NULL, '1650.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (21, 7, 2147483647, 'G7 OB', 'Office bag', 'manual', 0, '1850.0000', '1850.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3700.0000', NULL, '1850.0000', 0, NULL, '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (22, 7, 2147483647, 'OB', 'G7 Office Bag', 'manual', 0, '2200.0000', '2200.0000', '3.0000', 1, '0.0000', 0, '', '0', '0.0000', '6600.0000', NULL, '2200.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (150, 8, 356, 'G7-M-LWLT-0042-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '275.0000', '275.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '825.0000', NULL, '275.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (151, 8, 357, 'G7-M-LWLT-0042-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '275.0000', '275.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '825.0000', NULL, '275.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (152, 8, 358, 'G7-M-LWLT-0043-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '315.0000', '315.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '945.0000', NULL, '315.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (153, 8, 359, 'G7-M-LWLT-0043-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '315.0000', '315.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '945.0000', NULL, '315.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (154, 8, 360, 'G7-M-LWLT-0043-4', 'G7 Leather Wallet-TAN', 'standard', 0, '315.0000', '315.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '945.0000', NULL, '315.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (155, 8, 429, 'G7-M-LWLT-0050-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (156, 8, 430, 'G7-M-LWLT-0050-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (157, 8, 438, 'G7-M-LWLT-0050-4', 'G7 Leather Wallet-TAN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (158, 8, 361, 'G7-M-LWLT-0044-4', 'G7 Leather Wallet-TAN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (159, 8, 362, 'G7-M-LWLT-0044-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (160, 8, 426, 'G7-M-LWLT-0044-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (161, 8, 432, 'G7-M-LWLT-0051-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (162, 8, 433, 'G7-M-LWLT-0051-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (163, 8, 434, 'G7-M-LWLT-0051-4', 'G7 Leather Wallet-TAN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (164, 8, 349, 'G7-M-LWLT-0039-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (165, 8, 350, 'G7-M-LWLT-0039-4', 'G7 Leather Wallet-TAN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (166, 8, 351, 'G7-M-LWLT-0039-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (167, 8, 409, 'G7-M-LWLT-0045-4', 'G7 Leather Wallet-TAN', 'standard', 0, '395.0000', '395.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1185.0000', NULL, '395.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (168, 8, 410, 'G7-M-LWLT-0045-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '395.0000', '395.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1185.0000', NULL, '395.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (169, 8, 411, 'G7-M-LWLT-0045-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '395.0000', '395.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1185.0000', NULL, '395.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (170, 8, 418, 'G7-M-LWLT-0047-4', 'G7 Leather Wallet-TAN', 'standard', 0, '395.0000', '395.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1185.0000', NULL, '395.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (171, 8, 419, 'G7-M-LWLT-0047-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '395.0000', '395.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1185.0000', NULL, '395.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (172, 8, 420, 'G7-M-LWLT-0047-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '395.0000', '395.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1185.0000', NULL, '395.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (173, 8, 352, 'G7-M-LWLT-0040-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (174, 8, 353, 'G7-M-LWLT-0040-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (175, 8, 354, 'G7-M-LWLT-0040-4', 'G7 Leather Wallet-TAN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (176, 8, 355, 'G7-M-LWLT-0041-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '315.0000', '315.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '945.0000', NULL, '315.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (177, 8, 452, 'G7-M-LWLT-0053-4', 'G7 Leather Wallet-TAN', 'standard', 0, '315.0000', '315.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '945.0000', NULL, '315.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (178, 8, 453, 'G7-M-LWLT-0053-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '315.0000', '315.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '945.0000', NULL, '315.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (179, 8, 454, 'G7-M-LWLT-0053-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '315.0000', '315.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '945.0000', NULL, '315.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (180, 8, 421, 'G7-M-LWLT-0048-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '475.0000', '475.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1425.0000', NULL, '475.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (181, 8, 422, 'G7-M-LWLT-0048-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '475.0000', '475.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1425.0000', NULL, '475.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (182, 8, 423, 'G7-M-LWLT-0048', 'G7 Leather Wallet', 'standard', 0, '475.0000', '475.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1425.0000', NULL, '475.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (183, 8, 442, 'G7-M-LWLT-0052-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (184, 8, 443, 'G7-M-LWLT-0052-4', 'G7 Leather Wallet-TAN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (185, 8, 444, 'G7-M-LWLT-0052-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (186, 8, 427, 'G7-M-LWLT-0049-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (187, 8, 428, 'G7-M-LWLT-0049-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (188, 8, 431, 'G7-M-LWLT-0049-4', 'G7 Leather Wallet-TAN', 'standard', 0, '335.0000', '335.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1005.0000', NULL, '335.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (189, 8, 424, 'G7-M-PWLT-0003', 'G7 Passport Wallet', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', NULL, '500.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (190, 8, 425, 'G7-M-PWLT-0004', 'G7 Passport Wallet', 'standard', 0, '450.0000', '450.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1350.0000', NULL, '450.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (191, 8, 435, 'JI-M-IB-0011', 'JI Imoported Belt', 'standard', 0, '325.0000', '325.0000', '9.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2925.0000', NULL, '325.0000', 2, 'PCS', '9.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (192, 8, 436, 'JI-M-IB-0012', 'JI Imoported Belt', 'standard', 0, '550.0000', '550.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3300.0000', NULL, '550.0000', 2, 'PCS', '6.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (193, 10, 2147483647, 'G7-M-SB-000002', 'G7 Side BAg', 'manual', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', NULL, '500.0000', 0, NULL, '5.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (194, 10, 2147483647, 'G7-M-SB-000003', 'G7 Side Bag', 'manual', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', NULL, '500.0000', 0, NULL, '5.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (195, 11, 2147483647, 'G7-M-SB-000002', 'G7Side Bag', 'manual', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', NULL, '500.0000', 0, NULL, '5.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (196, 11, 2147483647, 'G7-M-SB-000003', 'G7 Side Bag', 'manual', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 0, '', '0', '0.0000', '2500.0000', NULL, '500.0000', 0, NULL, '5.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (197, 12, 323, 'JI-M-IB-0004', 'JI Imoported Belt', 'standard', 0, '520.0000', '520.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1040.0000', NULL, '520.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (198, 13, 2147483647, 'G7 Buckal', 'G7-BKL-0001', 'manual', 0, '390.0000', '390.0000', '21.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8190.0000', NULL, '390.0000', 0, NULL, '21.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (199, 14, 714, 'JI-M-IBLT-0131-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '450.0000', '450.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2700.0000', NULL, '450.0000', 2, 'PCS', '6.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (200, 15, 2147483647, 'G7-M-KW-0002', 'G7 KEY WALLET', 'manual', 0, '175.0000', '175.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1050.0000', NULL, '175.0000', 0, NULL, '6.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (201, 15, 2147483647, 'G7-M-KW-0001', 'G7 WALLET', 'manual', 0, '240.0000', '240.0000', '3.0000', 1, '0.0000', 0, '', '0', '0.0000', '720.0000', NULL, '240.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (202, 16, 2147483647, '001', 'BELT BOX', 'manual', 0, '25.0000', '25.0000', '42.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1050.0000', NULL, '25.0000', 0, NULL, '42.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (203, 17, 2147483647, 'JI-M-IB-0003-53', 'JI IMOPORTED BELT--COBRA', 'manual', 0, '600.0000', '600.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2400.0000', NULL, '600.0000', 0, NULL, '4.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (204, 18, 2147483647, 'G7-M-LWLT-0059', 'G7 Leather Wallet-BLACK,BROWN.TAN', 'manual', 0, '250.0000', '250.0000', '30.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7500.0000', NULL, '250.0000', 0, NULL, '30.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (205, 18, 2147483647, '	G7-M-LWLT-0060', 'G7 Leather Wallet-BLACK,BROWN,TAN', 'manual', 0, '261.0000', '261.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '2349.0000', NULL, '261.0000', 0, NULL, '9.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (206, 18, 2147483647, 'G7-M-LWLT-0061', 'G7 Leather Wallet-BLACK,BROWN,TAN', 'manual', 0, '267.0000', '267.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '2403.0000', NULL, '267.0000', 0, NULL, '9.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (207, 18, 2147483647, 'G7-M-LWLT-0062', 'G7 Leather Wallet-BLACK', 'manual', 0, '252.0000', '252.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '2268.0000', NULL, '252.0000', 0, NULL, '9.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (208, 18, 2147483647, 'G7-M-PWLT-0006', 'G7 Passport Wallet-BLACK,BROWN,TAN', 'manual', 0, '176.0000', '176.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '1584.0000', NULL, '176.0000', 0, NULL, '9.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (209, 18, 2147483647, 'G7-M-PWLT-0005', 'G7 Passport Wallet-BROWN,BLACK', 'manual', 0, '398.0000', '398.0000', '6.0000', 1, '0.0000', 0, '', '0', '0.0000', '2388.0000', NULL, '398.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (210, 18, 2147483647, 'G7-M-PWLT-0007', 'G7 Passport Wallet-BLACK,BROWN', 'manual', 0, '264.0000', '264.0000', '6.0000', 1, '0.0000', 0, '', '0', '0.0000', '1584.0000', NULL, '264.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (211, 18, 2147483647, 'G7 BUCKAL', 'G7- BUCKAL', 'manual', 0, '350.0000', '350.0000', '7.0000', 1, '0.0000', 0, '', '0', '0.0000', '2450.0000', NULL, '350.0000', 0, NULL, '7.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (229, 19, 2147483647, 'G7-M-LWLT-0059', 'G7 Leather Wallet -Black,Brown,TAn', 'manual', 0, '250.0000', '250.0000', '18.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', NULL, '250.0000', 0, NULL, '18.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (230, 19, 2147483647, 'G7-M-LWLT-0060', 'G7 LEATHER WALLET -BLACK,BROWN,TAN', 'manual', 0, '261.0000', '261.0000', '9.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2349.0000', NULL, '261.0000', 0, NULL, '9.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (231, 19, 2147483647, 'G7-M-LWLT-0061', 'G7 LEATHER WALLET -BLACK,BROWN,TAN', 'manual', 0, '267.0000', '267.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '2403.0000', NULL, '267.0000', 0, NULL, '9.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (232, 19, 2147483647, 'G7-M-LWLT-0062', 'G7 LEATHER WALLET -BLACK,BROWN,TAN', 'manual', 0, '252.0000', '252.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '2268.0000', NULL, '252.0000', 0, NULL, '9.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (233, 19, 2147483647, 'G7-M-PWLT-0006', 'G7 PASSPORT WALLET -BLACK,BROWN,TAN', 'manual', 0, '176.0000', '176.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '1584.0000', NULL, '176.0000', 0, NULL, '9.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (234, 19, 2147483647, 'G7-M-PWLT-0005', 'G7 PASSPORT WALLET -BLACK,BROWN', 'manual', 0, '398.0000', '398.0000', '6.0000', 1, '0.0000', 0, '', '0', '0.0000', '2388.0000', NULL, '398.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (235, 19, 2147483647, 'G7-M-PWLT-0007', 'G7 PASSPORT WALLET -BLACK,BROWN', 'manual', 0, '264.0000', '264.0000', '6.0000', 1, '0.0000', 0, '', '0', '0.0000', '1584.0000', NULL, '264.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (236, 19, 2147483647, 'G7-STAND', 'G7STAND', 'manual', 0, '200.0000', '200.0000', '2.0000', 1, '0.0000', 0, '', '0', '0.0000', '400.0000', NULL, '200.0000', 0, NULL, '2.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (237, 20, 2147483647, 'G7-M-LWLT-0059', 'G7 Leather Wallet Black,Brown,Tan', 'manual', 0, '250.0000', '250.0000', '18.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', NULL, '250.0000', 0, NULL, '18.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (238, 20, 2147483647, 'G7-M-LWLT-0060', 'G7 Leather Wallet Black,Brown,Tan', 'manual', 0, '261.0000', '261.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '2349.0000', NULL, '261.0000', 0, NULL, '9.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (239, 20, 2147483647, 'G7-M-LWLT-0061', 'G7 Leather Wallet Black,Brown,Tan', 'manual', 0, '267.0000', '267.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '2403.0000', NULL, '267.0000', 0, NULL, '9.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (240, 20, 2147483647, 'G7-M-LWLT-0062', 'G7 Leather Wallet Black,Brown,Tan', 'manual', 0, '252.0000', '252.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '2268.0000', NULL, '252.0000', 0, NULL, '9.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (241, 20, 2147483647, 'G7-M-PWLT-0006', 'G7 Passport Wallet Black,Brown,Tan', 'manual', 0, '176.0000', '176.0000', '9.0000', 1, '0.0000', 0, '', '0', '0.0000', '1584.0000', NULL, '176.0000', 0, NULL, '9.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (242, 20, 2147483647, 'G7-M-PWLT-0005', 'G7 Passport Wallet Black,Brown', 'manual', 0, '398.0000', '398.0000', '6.0000', 1, '0.0000', 0, '', '0', '0.0000', '2388.0000', NULL, '398.0000', 0, NULL, '6.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (243, 20, 2147483647, 'G7-M-PWLT-0007', 'G7 Passport Wallet Black,Brown', 'manual', 0, '264.0000', '264.0000', '6.0000', 1, '0.0000', 0, '', '0', '0.0000', '1584.0000', NULL, '264.0000', 0, NULL, '6.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (244, 20, 2147483647, 'G7-STAND', 'G7 STAND', 'manual', 0, '200.0000', '200.0000', '2.0000', 1, '0.0000', 0, '', '0', '0.0000', '400.0000', NULL, '200.0000', 0, NULL, '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (245, 20, 2147483647, 'G7 -BUCKAL', 'G7Buckal', 'manual', 0, '1700.0000', '1700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1700.0000', NULL, '1700.0000', 0, NULL, '1.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (246, 21, 2147483647, 'JEDUAR-001', 'JEDUAR-001', 'manual', 0, '1200.0000', '1200.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7200.0000', NULL, '1200.0000', 0, NULL, '6.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (247, 22, 819, 'G7-M-TB-0006', 'G7 Travelling Bag', 'standard', 0, '1600.0000', '1600.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3200.0000', NULL, '1600.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (248, 22, 820, 'G7-M-TB-0007', 'G7 Travelling Bag', 'standard', 0, '1700.0000', '1700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1700.0000', NULL, '1700.0000', 2, 'PCS', '1.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (249, 22, 821, 'G7-M-TB-0008', 'G7 Travelling Bag', 'standard', 0, '1700.0000', '1700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1700.0000', NULL, '1700.0000', 2, 'PCS', '1.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (250, 22, 788, 'G7-M-BK-0020', 'G7 Back Pack', 'standard', 0, '540.0000', '540.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3780.0000', NULL, '540.0000', 2, 'PCS', '7.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (251, 22, 794, 'G7-W-WLB-0045', 'G7 Ladies hand Bag', 'standard', 0, '750.0000', '750.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', NULL, '750.0000', 2, 'PCS', '4.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (252, 22, 800, 'G7-W-WLB-0051', 'G7 Ladies combo hand Bag', 'standard', 0, '600.0000', '600.0000', '8.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4800.0000', NULL, '600.0000', 2, 'PCS', '8.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (253, 22, 804, 'G7-W-WLB-0055', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', NULL, '1000.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (254, 22, 805, 'G7-W-WLB-0056', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', NULL, '1000.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (255, 22, 806, 'G7-W-WLB-0057', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', NULL, '1000.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (256, 22, 807, 'G7-W-WLB-0058', 'G7 Ladies hand Bag', 'standard', 0, '550.0000', '550.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2200.0000', NULL, '550.0000', 2, 'PCS', '4.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (257, 22, 808, 'G7-W-WLB-0059', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', NULL, '1000.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (258, 22, 809, 'G7-W-WLB-0060', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', NULL, '1000.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (259, 22, 810, 'G7-W-WLB-0061', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', NULL, '1000.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (260, 22, 812, 'G7-W-WLB-0063', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', NULL, '1000.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (261, 22, 813, 'G7-W-WLB-0064', 'G7 Ladies side Bag', 'standard', 0, '800.0000', '800.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1600.0000', NULL, '800.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (262, 22, 814, 'G7-W-WLB-0065', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', NULL, '1000.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (263, 22, 815, 'G7-W-WLB-0066', 'G7 Ladies hand Bag', 'standard', 0, '700.0000', '700.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2100.0000', NULL, '700.0000', 2, 'PCS', '3.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (264, 22, 816, 'G7-W-WLB-0067', 'G7 Ladies hand Bag', 'standard', 0, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', NULL, '1000.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challan_items` (`id`, `challan_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (265, 22, 818, 'G7-W-WLB-0069', 'G7 Ladies hand Bag', 'standard', 0, '800.0000', '800.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1600.0000', NULL, '800.0000', 2, 'PCS', '2.0000', '0', '0.0000', '0.0000', '0.0000');


#
# TABLE STRUCTURE FOR: sma_challans
#

DROP TABLE IF EXISTS `sma_challans`;

CREATE TABLE `sma_challans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `internal_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT '0.0000',
  `order_discount` decimal(25,4) DEFAULT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT '0.0000',
  `product_tax` decimal(25,4) DEFAULT '0.0000',
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT NULL,
  `total_tax` decimal(25,4) DEFAULT NULL,
  `shipping` decimal(25,4) DEFAULT '0.0000',
  `grand_total` decimal(25,4) NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `supplier` varchar(55) DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;

INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (3, '2018-12-14 07:44:00', 'CLN2018/12/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '7490.0000', '400.0000', '0.0000', '', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7490.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '6d48f53257bebf2ab8a22a1feb93fc9c09eb60817d37a81cfc753fe553d10260', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (4, '2019-01-13 04:31:00', 'CLN2019/01/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '11694.9152', '9200.0000', '0.0000', '', '9200.0000', '2105.0848', 1, '0.0000', '2105.0848', '0.0000', '13800.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, 'cd51643e9ff352839ae3f6410a7361eba179929d8d520080f7cf972726ee7239', '1052.5424', '1052.5424', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (5, '2019-01-17 03:40:00', 'CLN2019/01/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '1050.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'sent', 1, NULL, NULL, NULL, 0, NULL, 'b761fb814c93e7872e0c5e567a7e279937c43d33325877c5efcc492b8917dcb6', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (6, '2019-01-17 04:38:00', 'CLN2019/01/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '2100.0000', '2850.0000', '0.0000', '', '2850.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '55c6e71fbd68d45d217e638330e5f61bd774af34f4f455f0ee591cf6d5333866', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (7, '2019-01-29 07:35:00', 'CLN2019/01/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '10300.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10300.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '7bce144ce68f4c5eee6a1a516543eadffeb2779aa480c58993a669c811ea4cc7', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (8, '2019-03-20 06:43:00', 'CLN2019/03/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '49830.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '49830.0000', 'completed', 2, 1, '2019-03-20 08:59:12', NULL, 0, NULL, 'da4ba159e13e04c7be709097e3d3c326e76f137c08bb590712d1959fe53992e5', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (10, '2019-04-19 06:04:00', 'CLN2019/04/0001', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 1, 3, 'JI Corporation', '', NULL, '5000.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '1122c1692dc7b9335c357e3da28daf2facaec5ffa967b273b9b46bab5fc5ce3f', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (11, '2019-04-19 07:51:00', 'CLN2019/04/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '5000.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '9665b1c69593f831848c9c8d2a30e65ee316255ec7e4b1132f068d24cbae7be2', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (12, '2019-04-27 10:07:00', 'CLN2019/04/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '1040.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1040.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '19905e7f94d8dcef112c2b06b0998fae4e67e373bfa7ba2f67608e6ea7fd22c8', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (13, '2019-05-04 08:41:00', 'CLN2019/05/0001', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 1, 3, 'JI Corporation', '', NULL, '8190.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8190.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '7807a2d3ab54db629a429c08612d96fadd69886d829f7916c7ea3849d2c70e65', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (14, '2019-05-06 06:32:00', 'CLN2019/05/0001', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 1, 3, 'JI Corporation', '', NULL, '2700.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '0ca80bb9e236f3f555288e28dd0b6850736551d29ae24c514b21ec70f6a6056d', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (15, '2019-05-22 05:46:00', 'CLN2019/05/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '1770.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1770.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, 'e34a0645fff33df7883b8dd1fe630b46f578288a7cb2abc436e5b46293df34f7', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (16, '2019-05-28 05:31:00', 'CLN2019/05/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '1050.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '451c8d037c8fab3794dc1a32cf33623dbd6c0de7f0db0cad30ffe6646ae14efa', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (17, '2019-05-30 06:15:00', 'CLN2019/05/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '2400.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '4a4953983347f0b1b7c3f89c8875e86fa48b4d7e35d1c84972622ab6ec47c653', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (18, '2019-06-25 07:07:00', 'CLN2019/06/0001', 29, 'PRAGATI ENTERPRISE(VIKRAM NAGAR)', 1, 3, 'JI Corporation', '', NULL, '22526.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22526.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, 'd1ec42d453a6f60104bcf2f529d1abd6823ce7459c2e75ff363b5dc5bdbdb1a0', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (19, '2019-06-25 10:13:00', 'CLN2019/06/0001', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 1, 3, 'JI Corporation', '', NULL, '17476.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17476.0000', 'completed', 1, 1, '2019-06-25 10:34:27', NULL, 0, NULL, '981278d07bc8f132a0ce83245487464142aaad08a88124dacdbee95095a26377', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (20, '2019-06-25 10:22:00', 'CLN2019/06/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '19176.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19176.0000', 'completed', 1, 1, '2019-06-25 10:35:03', NULL, 0, NULL, 'e37cbf97f12abd1c87b465224f5d1e59957dfb584e78f443b3374a607ececb04', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (21, '2019-07-27 09:32:00', 'CLN2019/07/0001', 29, 'PRAGATI ENTERPRISE(VIKRAM NAGAR)', 1, 3, 'JI Corporation', '', NULL, '7200.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7200.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, '8832b89092e4859a0406ca8852b76938e01b93079667974f255dfa447845ecc5', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_challans` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (22, '2019-08-07 08:17:00', 'CLN2019/08/0001', 8, 'PRAGATI ENTERPRISE', 1, 3, 'JI Corporation', '', NULL, '45680.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45680.0000', 'completed', 1, NULL, NULL, NULL, 0, NULL, 'e8aaa3c727245adf2464a2d9859ee5bd0cba986da28185c013d7e83f5d35d018', '0.0000', '0.0000', '0.0000');


#
# TABLE STRUCTURE FOR: sma_combo_items
#

DROP TABLE IF EXISTS `sma_combo_items`;

CREATE TABLE `sma_combo_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `item_code` varchar(20) NOT NULL,
  `quantity` decimal(12,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_companies
#

DROP TABLE IF EXISTS `sma_companies`;

CREATE TABLE `sma_companies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_id` int(10) unsigned DEFAULT NULL,
  `group_name` varchar(20) NOT NULL,
  `customer_group_id` int(11) DEFAULT NULL,
  `customer_group_name` varchar(100) DEFAULT NULL,
  `name` varchar(55) NOT NULL,
  `company` varchar(255) NOT NULL,
  `vat_no` varchar(100) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `city` varchar(55) DEFAULT NULL,
  `state` varchar(55) DEFAULT NULL,
  `postal_code` varchar(8) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `email` varchar(100) NOT NULL,
  `cf1` varchar(100) DEFAULT NULL,
  `cf2` varchar(100) DEFAULT NULL,
  `cf3` varchar(100) DEFAULT NULL,
  `cf4` varchar(100) DEFAULT NULL,
  `cf5` varchar(100) DEFAULT NULL,
  `cf6` varchar(100) DEFAULT NULL,
  `invoice_footer` text,
  `payment_term` int(11) DEFAULT '0',
  `logo` varchar(255) DEFAULT 'logo.png',
  `award_points` int(11) DEFAULT '0',
  `deposit_amount` decimal(25,4) DEFAULT NULL,
  `price_group_id` int(11) DEFAULT NULL,
  `price_group_name` varchar(50) DEFAULT NULL,
  `gst_no` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `group_id` (`group_id`),
  KEY `group_id_2` (`group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8;

INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1, 3, 'customer', 1, 'General', 'Walk-in Customer', 'Walk-in Customer', '', 'Customer Address', 'Surat', 'GJ', '395001', 'India', '0123456789', 'customer@jiaccessories.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (3, NULL, 'biller', NULL, NULL, 'Ishwarbhai Sutariya', 'JI Corporation', '', 'Shop # 146, Meghani Tower, Delhi Gate, Station Road', 'Surat', 'GJ', '395001', 'India', '+91 261 243 1040', 'jiaccessories@outlook.com', '', '', '', '', '', '', '', 0, 'JI-W-300x80.png', 0, NULL, NULL, NULL, '24ACTPS6377D1Z2');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (8, 3, 'customer', 1, 'General', 'ASHESH BHAI JASANI', 'PRAGATI ENTERPRISE', '', 'f-17 Sargam Complex, Nr. Hirabaug', 'surat', 'GJ', '395006', 'india', '9512922424', 'avjasani@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '24AAWFP1937F1ZZ');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (9, 4, 'supplier', NULL, NULL, 'Husain Lakhtarwala', 'H.A.L Leather', '', 'No. 44,Nesbit RD, Aqua Gem Towers2    ,501 Mazgoan ', 'Mumbai', 'MH', '', 'India', '9869210252  /9820219', 'Halleather@hotmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '27AAGFH3937B1ZL');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (10, 4, 'supplier', NULL, NULL, 'Parmar', 'PARMAR Leather Crafts', '', 'p/901,Panchsheel Garden, Mahavir Nagar,Kandivali (W) , Mumbai-400067', 'Mumbai', 'MH', '27', 'India', '123456789 Fack', 'abc@gmail.comFack', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '27ACWPP6498D1ZQ');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (11, 4, 'supplier', NULL, NULL, 'Iringal Trendz Pvt. Ltd.', 'Iringal Trendz Pvt. Ltd.', '', 'Bldg No C-3/106, Jai Jalaram Complex', 'Mumbai', 'MH', '421311', 'India', '0123456789', 'iringaltrendz@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '27AACCI1973R1ZX');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (14, 4, 'supplier', NULL, NULL, 'M.M.IMPEX', 'M.M.TRADE IMPEX', '', '1 St FLOOR SUPER SHOPPING COMPLEX,MUMBAI-400003', 'Mumbai', 'MH', '27', 'India', '+91-22-23465566', 'Mmtradeimpex@rediffmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '27ABAFM3758Q1ZM');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (15, 4, 'supplier', NULL, NULL, 'ANMOL', 'ANMOL GIFT& NOVELTY', '', '64 SUTAR CHAWL,SHOP NO6,A2,GROUND FLOOR, NEAR ZAVERI BAZAR', 'Mumbai', 'MH', '27', 'India', '0123456789', 'Dumy@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '27BICPR2350B1ZN');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (16, 3, 'customer', 4, 'New Customer', 'Monarch Belts &Bags', 'Monarch Belts &Bags', '', 'Shop No :4   Opp Magedtic Shopping Center J.S.S. Road,Girgaon', 'Mumbai', 'MH', '400004', 'India', '022-23890430', 'Monarch@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '123456');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (17, 3, 'customer', 4, 'New Customer', 'M/S. Majestic Leather Belt', 'M/S. Majestic Leather Belt', '', 'Shop no:139,Bhansali mansion,Opp Majestic Shopping Center J.S.S. ,Girgaon,Charni Road', 'Mumbai', 'MH', '400004', 'India', '7666888222', 'Majestic@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '0123456');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (18, 4, 'supplier', NULL, NULL, 'Leather Smith House Of Fashion P Ltd', 'Leather Smith House Of Fashion P Ltd', '', 'Khasra No.995/2,Central Hope Town Selaqui, Dehradun', 'Dehradun', 'UK', '248011', 'India', '9997122218', 'Leathersmithdun@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '05AACCL2894A1ZT');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (19, 3, 'customer', 4, 'New Customer', 'Signature Belt Shop', 'Signature Belt Shop', '', 'Shop No.11-12 Maharaja Complex, Opp.Pattharkuwa-Petrol Pump,Relief Rode,', 'Ahmedabad-1', 'GJ', '', 'India', '7874688814', 'Signature@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '24ABTPB4422H1ZV');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (20, 3, 'customer', 4, 'New Customer', 'OM BELT HOUSE', 'OM BELT HOUSE', '', 'B-23,M.D.TOWER,MINI BAZAR,VARACHHA,', 'Surat', 'GJ', '', 'India', '3427481338', 'OM@GMAIL.COM', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '24AIOPB1613L1ZH');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (21, 3, 'customer', 4, 'New Customer', 'Iringal Trendz Pvt. Ltd.', 'Iringal Trendz Pvt. Ltd.', '', 'Bldg No C-3/106, Jai Jalaram Complex', 'Mumbai', 'MH', '', 'India', '0123456789', 'iringaltrend@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '27AACCI1973R1ZX');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (22, 3, 'customer', 4, 'New Customer', 'KAIDEBHAI', 'KAIDEBHAI', '', 'ABDUL REHMAN STREET', 'Mumbai', 'MH', '', '', '0123456789', 'KAIDEBHAI@GMAIL.COM', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (23, 3, 'customer', 4, 'New Customer', 'SHIVA ENTERPRISES', 'SHIVA ENTERPRISES', '', '', 'Surat', 'GJ', '', '', '0123456789', '8937833785@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '24AIEPC5210C1Z8');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (25, 3, 'customer', 4, 'New Customer', 'Husain Lakhtarwala', 'Husain Lakhtarwala', '', '', 'Surat', 'GJ', '', '', '0123456789', '485282440@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (26, 3, 'customer', 4, 'New Customer', 'H.L.L Leather', 'H.L.L Leather', '', 'H.L.L Leather 44 Nesbit Road Aquagem Tower2 501Mazgoan Mumbai-400010', 'Mumbai', 'MH', '', '', '0123456789', '3787362217@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', ' 27AAGFH3937B1ZL');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (27, 3, 'customer', 4, 'New Customer', 'ASHESH BHAI JASANI', 'PRAGATI ENTERPRISE(prime shoppers)', '', 'f-17 sargam complex nr. hirabaug', 'Surat', 'GJ', '395006', 'India', '9512922424', '230481295@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '24AAWFP1937F1ZZ');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (28, 4, 'supplier', NULL, NULL, 'K.V', 'K V PRINTERS', '', '39,SATGURU IND.ESTATE,NEAR JAY COACH,WES.EX.HIGHWAY,GOREGAON(EAST).MUMBAI-63', 'Mumbai', 'MH', '', '', '0123456789', 'kvprinters39@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '27ABXPC0089R1ZS');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (29, 3, 'customer', 4, 'New Customer', 'PRAGATI ENTERPRISE(VIKRAM NAGAR)', 'PRAGATI ENTERPRISE(VIKRAM NAGAR)', '', 'f-17 sargam complex nr. hirabaug', 'Surat', 'GJ', '', 'India', '9512922424', '3908612601@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '24AAWFP1937F1ZZ');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (30, 3, 'customer', 4, 'New Customer', 'M.M. Trade Impex', 'M.M. Trade Impex', '', '253/263B Abdul Rehman Street,1 Fst Floor Super Shopping Complex,Mumbai-400003', 'Mumbai', 'MH', '', 'India', '0123456789', '4940889779@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (31, 3, 'customer', 4, 'New Customer', 'COSMIC BELT', 'COSMIC BELT', '', 'SHOP NO 1&2 ABDUL REHMAN STREET 305 HILAL MANZIL,GROUND FLOOR', 'Mumbai', 'MH', '', '', '7666999888', '4364980242@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (32, 3, 'customer', 4, 'New Customer', 'Leather Smith House Of Fashion P Ltd', 'Leather Smith House Of Fashion P Ltd', '', '', 'Mumbai', 'MH', '', '', '0123456789', '5969587269@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (33, 3, 'customer', 4, 'New Customer', 'PARMAR Leather craft', 'PARMAR Leather craft', '', 'p/901,Panchsheel Garden, Mahavir Nagar,Kandivali (W) , Mumbai-400067', 'Surat', 'GJ', '', '', '0123456789', '8974890649@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (34, 3, 'customer', 4, 'New Customer', 'Patel Parfume', 'Patel Parfume', '', '', 'Surat', 'GJ', '', '', '0123456789', '4605513415@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (35, 3, 'customer', 4, 'New Customer', 'Leather Smith House Of Fashion P Ltd', 'Leather Smith House Of Fashion P Ltd', '', 'Khasara n0.995/2,central hope town selaqui', 'Dehradun', 'UK', '', 'india', '9997122218', '6169680988@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '05AACCL2894A1ZT');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (36, 3, 'customer', 4, 'New Customer', 'MMR IMPEX LLP', 'MMR IMPEX LLP', '', '3RD FLOOR,OFF NO 12,12/14 SASOOR BUILING ,SUTAR CHAWL\'ZAVERI BAZAAR', 'Mumbai', 'MH', '', 'India', '0123456789', '9206245703@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '27ABGFM3058F1ZA');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (37, 4, 'supplier', NULL, NULL, 'M.M.R IMPEX LLP', 'M.M.R IMPEX LLP', '', '3RD FLOOR,OFF NO 12,12/14,SASOOR BUILDING,SUTAR CHAWL, ZAVERI BAZAAR,MUMBAI', 'Mumbai', 'MH', '400002', 'India', '022-23433399', 'mmrimpexllp@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '27ABGFM3058F1ZA');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (38, 3, 'customer', 4, 'New Customer', 'Swarg Gold touch Limited', 'Swarg Gold touch Limited', '', 'swarg showroom 4/5 kanhere building Dr.D\'silva road ,opp.visava hotel,dadar west', 'Mumbai', 'MH', '', 'India', '0123456789', '4397210570@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '27AAMCS2420F1ZI');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (39, 3, 'customer', 4, 'New Customer', 'ALIASGARBIN SHABBIRBHAI VAZIR', 'TAJIR', '', '4TH FLOOR,4/3341 FLAT N0 4/A,HUSAINI PARK,H K STREET B/S KADRI HALL BEGUMPURA ,SURAT', 'Surat', 'GJ', '395003', 'India', '0123456789', '2836202822@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '24AGFPV8840E1Z7');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (40, 3, 'customer', 4, 'New Customer', 'SABIRBHAI', 'SABIRBHAI', '', '', 'Mumbai', 'MH', '', '', '0123456789', '7443644674@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (41, 3, 'customer', 4, 'New Customer', 'Rushit Koladiya', 'Rushit Koladiya', '', 'B-171 BHAGVATI KRUPA SOC. Punagam surat', 'Surat', 'GJ', '', '', '8866985585', '7331272349@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (42, 3, 'customer', 4, 'New Customer', 'Rushit Koladiya ', 'Rushit Koladiya ', '', 'B-171 bHAGVATI KRUPA SOC. Punagam surat', 'Surat', 'GJ', '', 'India', '8866985585', '7271587018@customer.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (43, 4, 'supplier', NULL, NULL, 'pragati enterprises', 'PRAGATI ENTERPRISES', '', 'shop#4 224,iscon mall opp,rajhans theater,piplod surat', 'Surat', 'GJ', '', 'India', '9512922424', 'g7@jiaccessories.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '24AAWFP1937F1ZZ');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (44, 3, 'customer', 4, 'New Customer', 'ROSHNI NOVELTY', 'ROSHNI NOVELTY', '', '31/33 SUTAR CHAWL, CENTRAL SHOPPING CENTRE,SHOP NO 207 ', 'MUMBAI', 'MH', '400002', 'India', '23450695', 'patelvelji7@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '27AFKPC9220P1Z2');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (45, 3, 'customer', 2, 'Reseller', 'vikas', 'vikas', '', '', 'Surat', 'GJ', '', '', '8000789879', 'viky_kothiya@yahoo.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (46, 3, 'customer', 4, 'New Customer', 'Demo cust', 'Demo Company', '', '', 'Surat', 'GJ', '', '', '9876543210', 'demo@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');


#
# TABLE STRUCTURE FOR: sma_costing
#

DROP TABLE IF EXISTS `sma_costing`;

CREATE TABLE `sma_costing` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL,
  `product_id` int(11) DEFAULT NULL,
  `sale_item_id` int(11) NOT NULL,
  `sale_id` int(11) DEFAULT NULL,
  `purchase_item_id` int(11) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `purchase_net_unit_cost` decimal(25,4) DEFAULT NULL,
  `purchase_unit_cost` decimal(25,4) DEFAULT NULL,
  `sale_net_unit_price` decimal(25,4) NOT NULL,
  `sale_unit_price` decimal(25,4) NOT NULL,
  `quantity_balance` decimal(15,4) DEFAULT NULL,
  `inventory` tinyint(1) DEFAULT '0',
  `overselling` tinyint(1) DEFAULT '0',
  `option_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1452 DEFAULT CHARSET=utf8;

INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (351, '2018-10-21', 11, 383, 9, 28, '12.0000', '813.5593', '960.0000', '383.8983', '453.0000', '12.0000', 1, 0, 22);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (352, '2018-10-21', 11, 384, 9, 29, '12.0000', '813.5593', '960.0000', '383.8983', '453.0000', '0.0000', 1, 0, 23);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (353, '2018-10-21', 12, 385, 10, 35, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '3.0000', 1, 0, 29);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (354, '2018-10-21', 12, 386, 10, 34, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '3.0000', 1, 0, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (355, '2018-10-21', 12, 387, 10, 33, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '3.0000', 1, 0, 27);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (356, '2018-10-21', 12, 388, 10, 32, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '3.0000', 1, 0, 26);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (357, '2018-10-21', 12, 389, 10, 31, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '3.0000', 1, 0, 25);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (358, '2018-10-21', 12, 390, 10, 30, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '3.0000', 1, 0, 24);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (359, '2018-10-21', 12, 391, 10, 37, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '3.0000', 1, 0, 31);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (360, '2018-10-21', 12, 392, 10, 36, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '3.0000', 1, 0, 30);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (361, '2018-10-23', 135, 393, 36, 368, '12.0000', '423.7288', '500.0000', '225.0000', '265.5000', '0.0000', 1, 0, 362);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (362, '2018-10-23', 135, 394, 36, 367, '12.0000', '423.7288', '500.0000', '225.0000', '265.5000', '0.0000', 1, 0, 361);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (363, '2018-10-23', 136, 395, 36, 371, '12.0000', '423.7288', '500.0000', '225.0000', '265.5000', '0.0000', 1, 0, 365);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (364, '2018-10-23', 136, 396, 36, 370, '12.0000', '423.7288', '500.0000', '225.0000', '265.5000', '0.0000', 1, 0, 364);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (365, '2018-10-23', 137, 397, 36, 372, '12.0000', '423.7288', '500.0000', '225.0000', '265.5000', '0.0000', 1, 0, 366);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (366, '2018-10-23', 137, 398, 36, 373, '12.0000', '423.7288', '500.0000', '225.0000', '265.5000', '0.0000', 1, 0, 367);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (367, '2018-10-23', 92, 399, 37, 274, '12.0000', '838.9831', '990.0000', '275.0000', '324.5000', '12.0000', 1, 0, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (368, '2018-10-23', 93, 400, 37, 275, '6.0000', '838.9831', '990.0000', '275.0000', '324.5000', '6.0000', 1, 0, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (369, '2018-10-23', 94, 401, 37, 276, '6.0000', '838.9831', '990.0000', '275.0000', '324.5000', '6.0000', 1, 0, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (370, '2018-10-23', 108, 402, 37, 298, '9.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 292);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (371, '2018-10-23', 108, 403, 37, 299, '3.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 293);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (372, '2018-10-23', 109, 404, 37, 301, '10.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '2.0000', 1, 0, 295);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (373, '2018-10-23', 109, 405, 37, 300, '3.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 294);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (374, '2018-10-21', 13, 406, 11, 43, '9.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '9.0000', 1, 0, 37);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (375, '2018-10-21', 13, 407, 11, 42, '9.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '9.0000', 1, 0, 36);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (376, '2018-10-21', 13, 408, 11, 41, '9.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '9.0000', 1, 0, 35);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (377, '2018-10-21', 13, 409, 11, 40, '9.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '9.0000', 1, 0, 34);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (378, '2018-10-21', 13, 410, 11, 39, '9.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '9.0000', 1, 0, 33);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (379, '2018-10-21', 13, 411, 11, 38, '9.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '9.0000', 1, 0, 32);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (392, '2018-10-23', 14, 424, 39, 44, '6.0000', '1008.4746', '1190.0000', '400.0000', '472.0000', '0.0000', 1, 0, 38);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (393, '2018-10-23', 14, 425, 39, 45, '6.0000', '1008.4746', '1190.0000', '400.0000', '472.0000', '0.0000', 1, 0, 39);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (394, '2018-10-23', 14, 426, 39, 46, '6.0000', '1008.4746', '1190.0000', '400.0000', '472.0000', '0.0000', 1, 0, 40);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (395, '2018-10-23', 14, 427, 39, 47, '6.0000', '1008.4746', '1190.0000', '400.0000', '472.0000', '0.0000', 1, 0, 41);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (396, '2018-10-23', 14, 428, 39, 48, '6.0000', '1008.4746', '1190.0000', '400.0000', '472.0000', '0.0000', 1, 0, 42);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (397, '2018-10-23', 15, 429, 40, 49, '3.0000', '1059.3220', '1250.0000', '425.0000', '501.5000', '3.0000', 1, 0, 43);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (398, '2018-10-23', 15, 430, 40, 50, '3.0000', '1059.3220', '1250.0000', '425.0000', '501.5000', '3.0000', 1, 0, 44);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (399, '2018-10-23', 15, 431, 40, 51, '9.0000', '1059.3220', '1250.0000', '425.0000', '501.5000', '3.0000', 1, 0, 45);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (400, '2018-10-23', 15, 432, 40, 52, '3.0000', '1059.3220', '1250.0000', '425.0000', '501.5000', '3.0000', 1, 0, 46);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (401, '2018-10-23', 15, 433, 40, 75, '3.0000', '1059.3220', '1250.0000', '425.0000', '501.5000', '3.0000', 1, 0, 69);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (402, '2018-10-23', 15, 434, 40, 76, '3.0000', '1059.3220', '1250.0000', '425.0000', '501.5000', '3.0000', 1, 0, 70);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (403, '2018-10-23', 35, 435, 41, 109, '6.0000', '966.1017', '1140.0000', '350.0000', '413.0000', '0.0000', 1, 0, 103);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (404, '2018-10-23', 35, 436, 41, 110, '6.0000', '966.1017', '1140.0000', '350.0000', '413.0000', '0.0000', 1, 0, 104);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (405, '2018-10-23', 35, 437, 41, 111, '6.0000', '966.1017', '1140.0000', '380.0000', '448.4000', '0.0000', 1, 0, 105);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (406, '2018-10-23', 35, 438, 41, 112, '6.0000', '966.1017', '1140.0000', '380.0000', '448.4000', '0.0000', 1, 0, 106);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (407, '2018-10-23', 35, 439, 41, 113, '6.0000', '966.1017', '1140.0000', '380.0000', '448.4000', '0.0000', 1, 0, 107);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (408, '2018-10-23', 35, 440, 41, 114, '6.0000', '966.1017', '1140.0000', '380.0000', '448.4000', '6.0000', 1, 0, 108);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (409, '2018-10-23', 35, 441, 41, 115, '6.0000', '966.1017', '1140.0000', '380.0000', '448.4000', '6.0000', 1, 0, 109);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (410, '2018-10-23', 35, 442, 41, 116, '6.0000', '966.1017', '1140.0000', '380.0000', '448.4000', '6.0000', 1, 0, 110);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (411, '2018-10-23', 35, 443, 41, 117, '6.0000', '966.1017', '1140.0000', '380.0000', '448.4000', '0.0000', 1, 0, 111);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (412, '2018-10-23', 17, 444, 42, 61, '6.0000', '1016.9492', '1200.0000', '350.0000', '413.0000', '0.0000', 1, 0, 55);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (413, '2018-10-23', 17, 445, 42, 102, '6.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '0.0000', 1, 0, 96);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (414, '2018-10-23', 17, 446, 42, 103, '6.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '0.0000', 1, 0, 97);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (415, '2018-10-23', 17, 447, 42, 105, '6.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '0.0000', 1, 0, 99);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (416, '2018-10-23', 17, 448, 42, 106, '6.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '0.0000', 1, 0, 100);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (417, '2018-10-23', 17, 449, 42, 107, '6.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '0.0000', 1, 0, 101);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (418, '2018-10-23', 17, 450, 42, 108, '6.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '0.0000', 1, 0, 102);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (419, '2018-10-23', 38, 451, 43, 126, '6.0000', '1008.4746', '1190.0000', '385.0000', '454.3000', '0.0000', 1, 0, 120);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (420, '2018-10-23', 38, 452, 43, 127, '3.0000', '1008.4746', '1190.0000', '385.0000', '454.3000', '3.0000', 1, 0, 121);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (421, '2018-10-23', 38, 453, 43, 128, '3.0000', '1008.4746', '1190.0000', '385.0000', '454.3000', '3.0000', 1, 0, 122);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (422, '2018-10-23', 38, 454, 43, 129, '3.0000', '1008.4746', '1190.0000', '385.0000', '454.3000', '3.0000', 1, 0, 123);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (423, '2018-10-23', 38, 455, 43, 130, '3.0000', '1008.4746', '1190.0000', '385.0000', '454.3000', '3.0000', 1, 0, 124);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (424, '2018-10-23', 110, 456, 44, 302, '10.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '2.0000', 1, 0, 296);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (425, '2018-10-23', 110, 457, 44, 303, '3.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 297);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (426, '2018-10-23', 111, 458, 44, 304, '6.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 298);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (427, '2018-10-23', 111, 459, 44, 305, '3.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 299);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (428, '2018-10-23', 112, 460, 44, 306, '9.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 300);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (429, '2018-10-23', 112, 461, 44, 307, '3.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 301);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (430, '2018-10-23', 113, 462, 44, 309, '6.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 303);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (431, '2018-10-23', 113, 463, 44, 308, '3.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (432, '2018-10-23', 19, 464, 45, 124, '3.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '3.0000', 1, 0, 118);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (433, '2018-10-23', 19, 465, 45, 123, '3.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '3.0000', 1, 0, 117);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (434, '2018-10-23', 19, 466, 45, 122, '3.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '3.0000', 1, 0, 116);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (435, '2018-10-23', 19, 467, 45, 121, '3.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '3.0000', 1, 0, 115);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (436, '2018-10-23', 19, 468, 45, 67, '3.0000', '1016.9492', '1200.0000', '350.0000', '413.0000', '3.0000', 1, 0, 61);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (437, '2018-10-23', 19, 469, 45, 66, '3.0000', '1016.9492', '1200.0000', '350.0000', '413.0000', '3.0000', 1, 0, 60);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (438, '2018-10-23', 20, 470, 46, 70, '6.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 64);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (439, '2018-10-23', 20, 471, 46, 69, '6.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 63);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (440, '2018-10-23', 20, 472, 46, 68, '6.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 62);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (441, '2018-10-23', 21, 473, 47, 71, '12.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 65);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (442, '2018-10-23', 22, 474, 47, 72, '6.0000', '974.5763', '1150.0000', '325.0000', '383.5000', '0.0000', 1, 0, 66);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (443, '2018-10-23', 22, 475, 47, 73, '6.0000', '974.5763', '1150.0000', '325.0000', '383.5000', '0.0000', 1, 0, 67);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (444, '2018-10-23', 23, 476, 47, 74, '12.0000', '932.2034', '1100.0000', '375.0000', '442.5000', '12.0000', 1, 0, 68);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (445, '2018-10-23', 24, 477, 47, 77, '9.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '3.0000', 1, 0, 71);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (446, '2018-10-23', 24, 478, 47, 78, '3.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '3.0000', 1, 0, 72);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (447, '2018-10-23', 24, 479, 47, 79, '3.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '3.0000', 1, 0, 73);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (448, '2018-10-23', 24, 480, 47, 80, '3.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '9.0000', 1, 0, 74);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (449, '2018-10-23', 25, 481, 47, 81, '9.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '3.0000', 1, 0, 75);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (450, '2018-10-23', 25, 482, 47, 82, '3.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '3.0000', 1, 0, 76);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (451, '2018-10-23', 25, 483, 47, 83, '3.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '3.0000', 1, 0, 77);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (452, '2018-10-23', 25, 484, 47, 84, '3.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '3.0000', 1, 0, 78);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (453, '2018-10-23', 58, 485, 48, 171, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '6.0000', 1, 0, 165);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (454, '2018-10-23', 58, 486, 48, 170, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '6.0000', 1, 0, 164);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (455, '2018-10-23', 58, 487, 48, 169, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '6.0000', 1, 0, 163);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (456, '2018-10-23', 29, 488, 48, 91, '6.0000', '1144.0678', '1350.0000', '425.0000', '501.5000', '6.0000', 1, 0, 85);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (457, '2018-10-23', 29, 489, 48, 90, '6.0000', '1144.0678', '1350.0000', '425.0000', '501.5000', '6.0000', 1, 0, 84);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (458, '2018-10-23', 28, 490, 48, 89, '12.0000', '889.8305', '1050.0000', '350.0000', '413.0000', '0.0000', 1, 0, 83);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (459, '2018-10-23', 27, 491, 48, 88, '6.0000', '932.2034', '1100.0000', '375.0000', '442.5000', '0.0000', 1, 0, 82);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (460, '2018-10-23', 27, 492, 48, 87, '6.0000', '932.2034', '1100.0000', '375.0000', '442.5000', '0.0000', 1, 0, 81);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (461, '2018-10-23', 26, 493, 48, 86, '6.0000', '932.2034', '1100.0000', '375.0000', '442.5000', '0.0000', 1, 0, 80);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (462, '2018-10-23', 26, 494, 48, 85, '6.0000', '932.2034', '1100.0000', '375.0000', '442.5000', '0.0000', 1, 0, 79);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (463, '2018-10-23', 143, 495, 49, 385, '6.0000', '720.3390', '850.0000', '325.0000', '383.5000', '0.0000', 1, 0, 379);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (464, '2018-10-23', 143, 496, 49, 386, '6.0000', '720.3390', '850.0000', '375.0000', '442.5000', '0.0000', 1, 0, 380);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (465, '2018-10-23', 142, 497, 49, 384, '24.0000', '805.0847', '950.0000', '250.0000', '295.0000', '36.0000', 1, 0, 378);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (466, '2018-10-23', 63, 498, 50, 183, '6.0000', '889.8305', '1050.0000', '350.0000', '413.0000', '0.0000', 1, 0, 177);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (467, '2018-10-23', 63, 499, 50, 182, '6.0000', '889.8305', '1050.0000', '350.0000', '413.0000', '0.0000', 1, 0, 176);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (468, '2018-10-23', 62, 500, 50, 181, '6.0000', '889.8305', '1050.0000', '350.0000', '413.0000', '0.0000', 1, 0, 175);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (469, '2018-10-23', 61, 501, 50, 180, '6.0000', '889.8305', '1050.0000', '350.0000', '413.0000', '0.0000', 1, 0, 174);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (470, '2018-10-23', 61, 502, 50, 179, '6.0000', '889.8305', '1050.0000', '350.0000', '413.0000', '6.0000', 1, 0, 173);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (471, '2018-10-23', 60, 503, 50, 178, '6.0000', '889.8305', '1050.0000', '350.0000', '413.0000', '0.0000', 1, 0, 172);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (472, '2018-10-23', 60, 504, 50, 177, '6.0000', '889.8305', '1050.0000', '350.0000', '413.0000', '0.0000', 1, 0, 171);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (473, '2018-10-23', 59, 505, 50, 375, '6.0000', '889.8305', '1050.0000', '325.0000', '383.5000', '0.0000', 1, 0, 369);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (474, '2018-10-23', 59, 506, 50, 176, '6.0000', '889.8305', '1050.0000', '325.0000', '383.5000', '0.0000', 1, 0, 170);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (475, '2018-10-23', 59, 507, 50, 175, '12.0000', '889.8305', '1050.0000', '325.0000', '383.5000', '0.0000', 1, 0, 169);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (476, '2018-10-23', 59, 508, 50, 174, '6.0000', '889.8305', '1050.0000', '325.0000', '383.5000', '0.0000', 1, 0, 168);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (477, '2018-10-23', 68, 509, 51, 195, '6.0000', '915.2542', '1080.0000', '325.0000', '383.5000', '6.0000', 1, 0, 189);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (478, '2018-10-23', 67, 510, 51, 194, '6.0000', '974.5763', '1150.0000', '325.0000', '383.5000', '0.0000', 1, 0, 188);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (479, '2018-10-23', 67, 511, 51, 193, '12.0000', '974.5763', '1150.0000', '325.0000', '383.5000', '0.0000', 1, 0, 187);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (480, '2018-10-23', 66, 512, 51, 192, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '0.0000', 1, 0, 186);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (481, '2018-10-23', 66, 513, 51, 191, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '0.0000', 1, 0, 185);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (482, '2018-10-23', 66, 514, 51, 190, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '6.0000', 1, 0, 184);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (483, '2018-10-23', 65, 515, 51, 189, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '0.0000', 1, 0, 183);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (484, '2018-10-23', 65, 516, 51, 188, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '0.0000', 1, 0, 182);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (485, '2018-10-23', 65, 517, 51, 187, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '0.0000', 1, 0, 181);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (486, '2018-10-23', 65, 518, 51, 186, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '0.0000', 1, 0, 180);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (487, '2018-10-23', 64, 519, 51, 185, '6.0000', '889.8305', '1050.0000', '325.0000', '383.5000', '0.0000', 1, 0, 179);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (488, '2018-10-23', 64, 520, 51, 184, '6.0000', '889.8305', '1050.0000', '325.0000', '383.5000', '0.0000', 1, 0, 178);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (489, '2018-10-23', 74, 521, 52, 207, '6.0000', '1042.3729', '1230.0000', '400.0000', '472.0000', '0.0000', 1, 0, 201);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (490, '2018-10-23', 74, 522, 52, 206, '6.0000', '1042.3729', '1230.0000', '400.0000', '472.0000', '0.0000', 1, 0, 200);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (491, '2018-10-23', 74, 523, 52, 205, '6.0000', '1042.3729', '1230.0000', '400.0000', '472.0000', '0.0000', 1, 0, 199);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (492, '2018-10-23', 73, 524, 52, 204, '6.0000', '1084.7458', '1280.0000', '400.0000', '472.0000', '0.0000', 1, 0, 198);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (493, '2018-10-23', 73, 525, 52, 203, '6.0000', '1084.7458', '1280.0000', '400.0000', '472.0000', '0.0000', 1, 0, 197);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (494, '2018-10-23', 73, 526, 52, 202, '6.0000', '1084.7458', '1280.0000', '400.0000', '472.0000', '0.0000', 1, 0, 196);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (495, '2018-10-23', 71, 527, 52, 200, '6.0000', '1000.0000', '1180.0000', '350.0000', '413.0000', '0.0000', 1, 0, 194);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (496, '2018-10-23', 71, 528, 52, 199, '6.0000', '1000.0000', '1180.0000', '350.0000', '413.0000', '0.0000', 1, 0, 193);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (497, '2018-10-23', 70, 529, 52, 198, '6.0000', '915.2542', '1080.0000', '350.0000', '413.0000', '0.0000', 1, 0, 192);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (498, '2018-10-23', 69, 530, 52, 197, '6.0000', '1042.3729', '1230.0000', '375.0000', '442.5000', '0.0000', 1, 0, 191);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (499, '2018-10-23', 69, 531, 52, 196, '6.0000', '1042.3729', '1230.0000', '375.0000', '442.5000', '0.0000', 1, 0, 190);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (500, '2018-10-23', 79, 532, 53, 225, '24.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 219);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (501, '2018-10-23', 78, 533, 53, 224, '6.0000', '1042.3729', '1230.0000', '375.0000', '442.5000', '0.0000', 1, 0, 218);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (502, '2018-10-23', 78, 534, 53, 223, '6.0000', '1042.3729', '1230.0000', '375.0000', '442.5000', '0.0000', 1, 0, 217);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (503, '2018-10-23', 78, 535, 53, 222, '6.0000', '1042.3729', '1230.0000', '375.0000', '442.5000', '0.0000', 1, 0, 216);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (504, '2018-10-23', 77, 536, 53, 221, '6.0000', '1042.3729', '1230.0000', '400.0000', '472.0000', '0.0000', 1, 0, 215);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (505, '2018-10-23', 77, 537, 53, 220, '6.0000', '1042.3729', '1230.0000', '400.0000', '472.0000', '0.0000', 1, 0, 214);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (506, '2018-10-23', 77, 538, 53, 219, '6.0000', '1042.3729', '1230.0000', '400.0000', '472.0000', '0.0000', 1, 0, 213);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (507, '2018-10-23', 76, 539, 53, 218, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 212);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (508, '2018-10-23', 76, 540, 53, 217, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 211);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (509, '2018-10-23', 76, 541, 53, 216, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 210);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (510, '2018-10-23', 76, 542, 53, 215, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 209);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (511, '2018-10-23', 76, 543, 53, 214, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 208);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (512, '2018-10-23', 76, 544, 53, 213, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 207);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (513, '2018-10-23', 76, 545, 53, 212, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 206);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (514, '2018-10-23', 76, 546, 53, 211, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 205);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (515, '2018-10-23', 75, 547, 53, 210, '6.0000', '1042.3729', '1230.0000', '375.0000', '442.5000', '0.0000', 1, 0, 204);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (516, '2018-10-23', 75, 548, 53, 209, '6.0000', '1042.3729', '1230.0000', '375.0000', '442.5000', '0.0000', 1, 0, 203);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (517, '2018-10-23', 75, 549, 53, 208, '6.0000', '1042.3729', '1230.0000', '375.0000', '442.5000', '0.0000', 1, 0, 202);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (518, '2018-10-23', 36, 550, 54, 119, '12.0000', '1567.7966', '1850.0000', '650.0000', '767.0000', '12.0000', 1, 0, 113);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (519, '2018-10-23', 36, 551, 54, 120, '6.0000', '1567.7966', '1850.0000', '650.0000', '767.0000', '0.0000', 1, 0, 114);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (520, '2018-10-23', 36, 552, 54, 118, '6.0000', '1567.7966', '1850.0000', '650.0000', '767.0000', '18.0000', 1, 0, 112);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (521, '2018-10-23', 34, 553, 54, 100, '6.0000', '1644.0678', '1940.0000', '675.0000', '796.5000', '0.0000', 1, 0, 94);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (522, '2018-10-23', 34, 554, 54, 99, '6.0000', '1644.0678', '1940.0000', '675.0000', '796.5000', '0.0000', 1, 0, 93);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (523, '2018-10-23', 97, 555, 54, 282, '6.0000', '1042.3729', '1230.0000', '350.0000', '413.0000', '0.0000', 1, 0, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (524, '2018-10-23', 97, 556, 54, 281, '12.0000', '1042.3729', '1230.0000', '300.0000', '354.0000', '0.0000', 1, 0, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (525, '2018-10-23', 138, 557, 54, 374, '12.0000', '1398.3051', '1650.0000', '400.0000', '472.0000', '0.0000', 1, 0, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (550, '2018-10-23', 90, 582, 56, 268, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 262);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (551, '2018-10-23', 90, 583, 56, 267, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 261);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (552, '2018-10-23', 89, 584, 56, 266, '8.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 260);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (553, '2018-10-23', 88, 585, 56, 265, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 259);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (554, '2018-10-23', 88, 586, 56, 264, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 258);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (555, '2018-10-23', 88, 587, 56, 263, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 257);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (556, '2018-10-23', 88, 588, 56, 262, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 256);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (557, '2018-10-23', 87, 589, 56, 261, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 255);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (558, '2018-10-23', 87, 590, 56, 260, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 254);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (559, '2018-10-23', 87, 591, 56, 259, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 253);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (560, '2018-10-23', 87, 592, 56, 258, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 252);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (561, '2018-10-23', 86, 593, 56, 257, '12.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '12.0000', 1, 0, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (562, '2018-10-23', 100, 594, 57, 285, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 279);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (563, '2018-10-23', 99, 595, 57, 284, '9.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 278);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (564, '2018-10-23', 98, 596, 57, 283, '9.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 277);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (565, '2018-10-23', 96, 597, 57, 280, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '6.0000', 1, 0, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (566, '2018-10-23', 96, 598, 57, 279, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '6.0000', 1, 0, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (567, '2018-10-23', 91, 599, 57, 272, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 266);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (568, '2018-10-23', 91, 600, 57, 271, '6.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 265);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (569, '2018-10-23', 105, 601, 58, 293, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 287);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (570, '2018-10-23', 105, 602, 58, 292, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 286);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (571, '2018-10-23', 104, 603, 58, 291, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 285);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (572, '2018-10-23', 104, 604, 58, 290, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 284);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (573, '2018-10-23', 103, 605, 58, 289, '6.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 283);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (574, '2018-10-23', 102, 606, 58, 288, '6.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '2.0000', 1, 0, 282);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (575, '2018-10-23', 101, 607, 58, 287, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 281);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (576, '2018-10-23', 101, 608, 58, 286, '6.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 280);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (577, '2018-10-23', 121, 609, 59, 333, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, 327);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (578, '2018-10-23', 120, 610, 59, 332, '6.0000', '720.3390', '850.0000', '225.0000', '265.5000', '0.0000', 1, 0, 326);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (579, '2018-10-23', 119, 611, 59, 331, '12.0000', '754.2373', '890.0000', '250.0000', '295.0000', '0.0000', 1, 0, 325);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (580, '2018-10-23', 107, 612, 59, 297, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 291);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (581, '2018-10-23', 107, 613, 59, 296, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 290);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (582, '2018-10-23', 106, 614, 59, 295, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 289);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (583, '2018-10-23', 106, 615, 59, 294, '3.0000', '889.8305', '1050.0000', '400.0000', '472.0000', '0.0000', 1, 0, 288);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (584, '2018-10-23', 140, 616, 60, 381, '6.0000', '1008.4746', '1190.0000', '375.0000', '442.5000', '0.0000', 1, 0, 375);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (585, '2018-10-23', 140, 617, 60, 380, '6.0000', '1008.4746', '1190.0000', '375.0000', '442.5000', '0.0000', 1, 0, 374);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (586, '2018-10-23', 140, 618, 60, 379, '6.0000', '1008.4746', '1190.0000', '375.0000', '442.5000', '0.0000', 1, 0, 373);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (587, '2018-10-23', 139, 619, 60, 378, '6.0000', '1008.4746', '1190.0000', '375.0000', '442.5000', '0.0000', 1, 0, 372);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (588, '2018-10-23', 139, 620, 60, 377, '6.0000', '1008.4746', '1190.0000', '375.0000', '442.5000', '0.0000', 1, 0, 371);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (589, '2018-10-23', 139, 621, 60, 376, '6.0000', '1008.4746', '1190.0000', '375.0000', '442.5000', '0.0000', 1, 0, 370);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (590, '2018-10-23', 127, 622, 60, 339, '6.0000', '720.3390', '850.0000', '300.0000', '354.0000', '0.0000', 1, 0, 333);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (591, '2018-10-23', 126, 623, 60, 338, '6.0000', '720.3390', '850.0000', '300.0000', '354.0000', '0.0000', 1, 0, 332);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (592, '2018-10-23', 125, 624, 60, 337, '2.0000', '838.9831', '990.0000', '300.0000', '354.0000', '0.0000', 1, 0, 331);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (593, '2018-10-23', 124, 625, 60, 336, '2.0000', '838.9831', '990.0000', '300.0000', '354.0000', '0.0000', 1, 0, 330);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (594, '2018-10-23', 123, 626, 60, 335, '9.0000', '838.9831', '990.0000', '300.0000', '354.0000', '0.0000', 1, 0, 329);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (595, '2018-10-23', 122, 627, 60, 334, '11.0000', '838.9831', '990.0000', '300.0000', '354.0000', '0.0000', 1, 0, 328);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (596, '2018-10-23', 57, 628, 61, 168, '3.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '7.0000', 1, 0, 162);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (597, '2018-10-23', 56, 629, 61, 167, '1.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '13.0000', 1, 0, 161);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (598, '2018-10-23', 55, 630, 61, 166, '3.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '26.0000', 1, 0, 160);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (599, '2018-10-23', 54, 631, 61, 165, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '20.0000', 1, 0, 159);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (600, '2018-10-23', 53, 632, 61, 164, '2.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '6.0000', 1, 0, 158);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (601, '2018-10-23', 52, 633, 61, 163, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '42.0000', 1, 0, 157);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (602, '2018-10-23', 51, 634, 61, 162, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '40.0000', 1, 0, 156);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (603, '2018-10-23', 50, 635, 61, 161, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '43.0000', 1, 0, 155);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (604, '2018-10-23', 49, 636, 61, 160, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '36.0000', 1, 0, 154);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (605, '2018-10-23', 48, 637, 61, 159, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '42.0000', 1, 0, 153);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (606, '2018-10-23', 47, 638, 61, 158, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '40.0000', 1, 0, 152);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (607, '2018-10-23', 46, 639, 61, 157, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '41.0000', 1, 0, 151);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (608, '2018-10-23', 37, 640, 61, 125, '6.0000', '1228.8136', '1450.0000', '450.0000', '531.0000', '40.0000', 1, 0, 119);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (609, '2018-10-23', 115, 641, 62, 315, '2.0000', '372.8814', '440.0000', '200.0000', '236.0000', '2.0000', 1, 0, 309);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (610, '2018-10-23', 115, 642, 62, 317, '5.0000', '372.8814', '440.0000', '200.0000', '236.0000', '0.0000', 1, 0, 311);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (611, '2018-10-23', 115, 643, 62, 314, '2.0000', '372.8814', '440.0000', '200.0000', '236.0000', '0.0000', 1, 0, 308);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (612, '2018-10-23', 116, 644, 62, 319, '3.0000', '440.0000', '519.2000', '200.0000', '236.0000', '2.0000', 1, 0, 313);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (613, '2018-10-23', 116, 645, 62, 323, '3.0000', '440.0000', '519.2000', '200.0000', '236.0000', '5.0000', 1, 0, 317);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (614, '2018-10-23', 116, 646, 62, 321, '2.0000', '440.0000', '519.2000', '200.0000', '236.0000', '0.0000', 1, 0, 315);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (615, '2018-10-23', 117, 647, 62, 326, '4.0000', '372.8814', '440.0000', '200.0000', '236.0000', '0.0000', 1, 0, 320);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (616, '2018-10-23', 117, 648, 62, 325, '3.0000', '372.8814', '440.0000', '200.0000', '236.0000', '1.0000', 1, 0, 319);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (617, '2018-10-23', 118, 649, 62, 329, '1.0000', '372.8814', '440.0000', '200.0000', '236.0000', '0.0000', 1, 0, 323);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (618, '2018-10-23', 118, 650, 62, 330, '1.0000', '372.8814', '440.0000', '200.0000', '236.0000', '2.0000', 1, 0, 324);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (619, '2018-10-23', 118, 651, 62, 328, '4.0000', '372.8814', '440.0000', '200.0000', '236.0000', '0.0000', 1, 0, 322);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (620, '2018-10-23', 41, 652, 63, 141, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 135);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (621, '2018-10-23', 41, 653, 63, 140, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 134);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (622, '2018-10-23', 41, 654, 63, 139, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 133);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (623, '2018-10-23', 41, 655, 63, 138, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 132);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (624, '2018-10-23', 40, 656, 63, 137, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 131);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (625, '2018-10-23', 40, 657, 63, 136, '12.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 130);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (626, '2018-10-23', 40, 658, 63, 135, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 129);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (627, '2018-10-23', 39, 659, 63, 134, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 128);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (628, '2018-10-23', 39, 660, 63, 133, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 127);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (629, '2018-10-23', 39, 661, 63, 132, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 126);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (630, '2018-10-23', 39, 662, 63, 131, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 125);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (631, '2018-10-24', 36, 663, 64, 118, '6.0000', '1567.7966', '1850.0000', '650.0000', '767.0000', '18.0000', 1, 0, 112);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (632, '2018-10-24', 36, 664, 64, 119, '12.0000', '1567.7966', '1850.0000', '650.0000', '767.0000', '12.0000', 1, 0, 113);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (633, '2018-10-24', 36, 665, 64, 120, '6.0000', '1567.7966', '1850.0000', '650.0000', '767.0000', '0.0000', 1, 0, 114);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (634, '2018-10-24', 34, 666, 64, 99, '6.0000', '1644.0678', '1940.0000', '675.0000', '796.5000', '0.0000', 1, 0, 93);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (635, '2018-10-24', 34, 667, 64, 100, '6.0000', '1644.0678', '1940.0000', '675.0000', '796.5000', '0.0000', 1, 0, 94);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (636, '2018-10-24', 97, 668, 64, 281, '12.0000', '1042.3729', '1230.0000', '300.0000', '354.0000', '0.0000', 1, 0, 275);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (637, '2018-10-24', 97, 669, 64, 282, '6.0000', '1042.3729', '1230.0000', '350.0000', '413.0000', '0.0000', 1, 0, 276);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (638, '2018-10-24', 138, 670, 64, 374, '12.0000', '1398.3051', '1650.0000', '400.0000', '472.0000', '0.0000', 1, 0, 368);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (639, '2018-10-24', 33, 671, 64, 97, '6.0000', '1525.4237', '1800.0000', '700.0000', '826.0000', '0.0000', 1, 0, 91);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (640, '2018-10-24', 33, 672, 64, 98, '6.0000', '1525.4237', '1800.0000', '700.0000', '826.0000', '0.0000', 1, 0, 92);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (641, '2018-10-24', 72, 673, 64, 201, '6.0000', '1525.4237', '1800.0000', '625.0000', '737.5000', '0.0000', 1, 0, 195);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (642, '2018-10-24', 32, 674, 64, 94, '6.0000', '1525.4237', '1800.0000', '600.0000', '708.0000', '0.0000', 1, 0, 88);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (643, '2018-10-24', 32, 675, 64, 95, '12.0000', '1525.4237', '1800.0000', '550.0000', '649.0000', '0.0000', 1, 0, 89);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (644, '2018-10-24', 32, 676, 64, 96, '6.0000', '1525.4237', '1800.0000', '550.0000', '649.0000', '0.0000', 1, 0, 90);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (645, '2018-10-24', 4, 677, 65, 13, '3.0000', '3500.0000', '4130.0000', '1530.0000', '1805.4000', '2.0000', 1, 0, 8);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (646, '2018-10-24', 4, 678, 65, 15, '3.0000', '3500.0000', '4130.0000', '1530.0000', '1805.4000', '2.0000', 1, 0, 10);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (647, '2018-10-24', 4, 679, 65, 14, '3.0000', '3500.0000', '4130.0000', '1530.0000', '1805.4000', '7.0000', 1, 0, 9);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (648, '2018-10-24', 5, 680, 65, 17, '3.0000', '2838.9831', '3350.0000', '1430.0000', '1687.4000', '2.0000', 1, 0, 12);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (649, '2018-10-24', 5, 681, 65, 16, '3.0000', '2838.9831', '3350.0000', '1430.0000', '1687.4000', '2.0000', 1, 0, 11);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (650, '2018-10-24', 7, 682, 65, 20, '3.0000', '1601.6949', '1890.0000', '750.0000', '885.0000', '41.0000', 1, 0, 14);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (651, '2018-10-24', 8, 683, 65, 21, '3.0000', '1559.3220', '1840.0000', '700.0000', '826.0000', '2.0000', 1, 0, 15);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (652, '2018-10-24', 9, 684, 65, 22, '3.0000', '1559.3220', '1840.0000', '700.0000', '826.0000', '25.0000', 1, 0, 16);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (669, '2018-10-24', 163, 701, 67, 420, '5.0000', '2332.0000', '2751.7600', '2351.6949', '2775.0000', '0.0000', 1, 0, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (670, '2018-10-24', 163, 702, 67, 421, '5.0000', '2332.0000', '2751.7600', '2351.6949', '2775.0000', '0.0000', 1, 0, 402);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (671, '2018-10-24', 163, 703, 67, 422, '5.0000', '2332.0000', '2751.7600', '2351.6949', '2775.0000', '0.0000', 1, 0, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (672, '2018-10-24', 149, 704, 68, 399, '1.0000', '1059.3220', '1250.0000', '350.0000', '413.0000', '1.0000', 1, 0, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (673, '2018-10-24', 149, 705, 68, 399, '1.0000', '1059.3220', '1250.0000', '350.0000', '413.0000', '1.0000', 1, 0, 387);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (674, '2018-10-24', 154, 706, 69, 404, '6.0000', '805.0847', '950.0000', '300.0000', '354.0000', '0.0000', 1, 0, 392);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (675, '2018-10-24', 152, 707, 70, 402, '2.0000', '762.7119', '900.0000', '350.0000', '413.0000', '0.0000', 1, 0, 390);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (676, '2018-10-24', 151, 708, 70, 401, '3.0000', '720.3390', '850.0000', '350.0000', '413.0000', '0.0000', 1, 0, 389);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (677, '2018-10-24', 155, 709, 70, 405, '3.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, 393);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (678, '2018-10-24', 150, 710, 70, 400, '6.0000', '635.5932', '750.0000', '250.0000', '295.0000', '2.0000', 1, 0, 388);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (679, '2018-10-24', 157, 711, 70, 407, '4.0000', '635.5932', '750.0000', '250.0000', '295.0000', '0.0000', 1, 0, 395);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (680, '2018-10-24', 158, 712, 70, 408, '2.0000', '466.1017', '550.0000', '250.0000', '295.0000', '0.0000', 1, 0, 396);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (681, '2018-10-24', 159, 713, 70, 409, '10.0000', '533.8983', '630.0000', '250.0000', '295.0000', '0.0000', 1, 0, 397);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (682, '2018-10-24', 160, 714, 70, 410, '15.0000', '466.1017', '550.0000', '250.0000', '295.0000', '0.0000', 1, 0, 398);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (683, '2018-10-24', 161, 715, 70, 411, '15.0000', '576.2712', '680.0000', '225.0000', '265.5000', '0.0000', 1, 0, 399);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (684, '2018-10-24', 156, 716, 70, 406, '2.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, 394);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (685, '2018-10-24', 153, 717, 70, 403, '3.0000', '805.0847', '950.0000', '350.0000', '413.0000', '0.0000', 1, 0, 391);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (686, '2018-10-24', 162, 718, 70, 412, '6.0000', '822.0339', '970.0000', '325.0000', '383.5000', '0.0000', 1, 0, 400);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (687, '2018-10-24', 148, 719, 71, 398, '12.0000', '1152.5424', '1360.0000', '450.0000', '531.0000', '21.0000', 1, 0, 386);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (688, '2018-10-24', 148, 720, 71, 398, '12.0000', '1152.5424', '1360.0000', '450.0000', '531.0000', '21.0000', 1, 0, 386);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (689, '2018-10-24', 148, 721, 71, 398, '9.0000', '1152.5424', '1360.0000', '450.0000', '531.0000', '24.0000', 1, 0, 386);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (690, '2018-10-24', 146, 722, 71, 396, '3.0000', '1262.7119', '1490.0000', '425.0000', '501.5000', '0.0000', 1, 0, 384);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (691, '2018-10-24', 145, 723, 71, 395, '5.0000', '1262.7119', '1490.0000', '425.0000', '501.5000', '0.0000', 1, 0, 383);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (692, '2018-10-24', 147, 724, 71, 397, '5.0000', '1686.4407', '1990.0000', '750.0000', '885.0000', '5.0000', 1, 0, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (693, '2018-10-24', 147, 725, 71, 397, '5.0000', '1686.4407', '1990.0000', '750.0000', '885.0000', '5.0000', 1, 0, 385);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (694, '2018-10-24', 144, 726, 71, 394, '10.0000', '762.7119', '900.0000', '250.0000', '295.0000', '0.0000', 1, 0, 382);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (695, '2018-10-24', 144, 727, 71, 393, '10.0000', '762.7119', '900.0000', '250.0000', '295.0000', '0.0000', 1, 0, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (696, '2018-10-25', 191, 728, 72, 457, '3.0000', '1750.0000', '2065.0000', '1850.0000', '2183.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (697, '2018-10-25', 189, 729, 72, 455, '3.0000', '1750.0000', '2065.0000', '1850.0000', '2183.0000', '8.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (698, '2018-10-25', 190, 730, 72, 456, '3.0000', '1750.0000', '2065.0000', '1850.0000', '2183.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (699, '2018-10-25', 187, 731, 72, 453, '3.0000', '1450.0000', '1711.0000', '1500.0000', '1770.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (700, '2018-10-25', 186, 732, 72, 452, '3.0000', '1450.0000', '1711.0000', '1500.0000', '1770.0000', '7.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (701, '2018-10-25', 188, 733, 72, 454, '3.0000', '1450.0000', '1711.0000', '1500.0000', '1770.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (702, '2018-10-25', 182, 734, 73, 438, '3.0000', '805.0847', '950.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (703, '2018-10-25', 183, 735, 73, 439, '2.0000', '805.0847', '950.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (704, '2018-10-25', 181, 736, 73, 437, '4.0000', '805.0847', '950.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (705, '2018-10-25', 180, 737, 73, 436, '12.0000', '838.9831', '990.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (706, '2018-10-25', 167, 738, 73, 423, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (707, '2018-10-25', 169, 739, 73, 425, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (708, '2018-10-25', 168, 740, 73, 424, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (709, '2018-10-25', 169, 741, 73, 425, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (710, '2018-10-25', 167, 742, 73, 423, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (711, '2018-10-25', 168, 743, 73, 424, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (712, '2018-10-25', 170, 744, 73, 426, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (713, '2018-10-25', 171, 745, 73, 427, '6.0000', '635.5932', '750.0000', '225.0000', '265.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (714, '2018-10-25', 173, 746, 74, 429, '5.0000', '750.0000', '750.0000', '225.0000', '265.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (715, '2018-10-25', 175, 747, 74, 431, '6.0000', '635.5932', '750.0000', '225.0000', '265.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (716, '2018-10-25', 176, 748, 74, 432, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (717, '2018-10-25', 179, 749, 74, 435, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (718, '2018-10-25', 177, 750, 74, 433, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (719, '2018-10-25', 178, 751, 74, 434, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (720, '2018-10-25', 174, 752, 74, 430, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (721, '2018-10-25', 172, 753, 74, 428, '6.0000', '720.3390', '850.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (722, '2018-10-25', 165, 754, 75, 417, '72.0000', '1567.7966', '1850.0000', '700.0000', '826.0000', '138.0000', 1, 0, 405);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (723, '2018-10-25', 166, 755, 75, 418, '21.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 406);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (724, '2018-10-25', 166, 756, 75, 419, '15.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 407);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (725, '2018-10-25', 10, 757, 76, 23, '5.0000', '974.5763', '1150.0000', '350.0000', '413.0000', '1.0000', 1, 0, 17);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (726, '2018-10-25', 10, 758, 76, 27, '2.0000', '974.5763', '1150.0000', '350.0000', '413.0000', '2.0000', 1, 0, 21);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (727, '2018-10-25', 10, 759, 76, 26, '5.0000', '974.5763', '1150.0000', '350.0000', '413.0000', '2.0000', 1, 0, 20);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (728, '2018-10-25', 10, 760, 76, 25, '5.0000', '974.5763', '1150.0000', '350.0000', '413.0000', '1.0000', 1, 0, 19);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (729, '2018-10-25', 10, 761, 76, 24, '4.0000', '974.5763', '1150.0000', '350.0000', '413.0000', '3.0000', 1, 0, 18);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (730, '2018-10-26', 243, 762, 77, 504, '6.0000', '1400.0000', '1652.0000', '1752.0000', '2067.3600', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (731, '2018-10-26', 245, 763, 77, 505, '15.0000', '1950.0000', '2301.0000', '2401.0000', '2833.1800', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (732, '2018-10-26', 232, 764, 78, 500, '2.0000', '2500.0000', '2950.0000', '3000.0000', '3540.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (733, '2018-10-26', 237, 765, 78, 501, '2.0000', '2800.0000', '3304.0000', '3354.0000', '3957.7200', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (734, '2018-10-26', 238, 766, 78, 502, '1.0000', '3800.0000', '4484.0000', '4534.0000', '5350.1200', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (735, '2018-10-26', 239, 767, 78, 503, '1.0000', '3500.0000', '4130.0000', '4180.0000', '4932.4000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (748, '2018-10-26', 223, 780, 79, 488, '4.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (749, '2018-10-26', 224, 781, 79, 489, '4.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (750, '2018-10-26', 212, 782, 79, 478, '1.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (751, '2018-10-26', 216, 783, 79, 481, '4.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (752, '2018-10-26', 215, 784, 79, 480, '4.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (753, '2018-10-26', 217, 785, 79, 482, '5.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (754, '2018-10-26', 222, 786, 79, 487, '2.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (755, '2018-10-26', 221, 787, 79, 486, '4.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (756, '2018-10-26', 220, 788, 79, 485, '5.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (757, '2018-10-26', 219, 789, 79, 484, '5.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (758, '2018-10-26', 218, 790, 79, 483, '2.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (759, '2018-10-26', 214, 791, 79, 479, '2.0000', '838.9831', '990.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (773, '2018-10-26', 225, 805, 80, 490, '6.0000', '423.7288', '500.0000', '275.0000', '324.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (774, '2018-10-26', 210, 806, 80, 476, '3.0000', '423.7288', '500.0000', '185.0000', '218.3000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (775, '2018-10-26', 206, 807, 80, 472, '3.0000', '423.7288', '500.0000', '110.2542', '130.1000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (776, '2018-10-26', 211, 808, 80, 477, '3.0000', '423.7288', '500.0000', '185.0000', '218.3000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (777, '2018-10-26', 204, 809, 80, 470, '3.0000', '423.7288', '500.0000', '185.0000', '218.3000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (778, '2018-10-26', 203, 810, 80, 469, '3.0000', '423.7288', '500.0000', '180.0000', '212.4000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (779, '2018-10-26', 202, 811, 80, 468, '3.0000', '423.7288', '500.0000', '180.0000', '212.4000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (780, '2018-10-26', 208, 812, 80, 474, '3.0000', '423.7288', '500.0000', '165.0000', '194.7000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (781, '2018-10-26', 201, 813, 80, 467, '3.0000', '381.3559', '450.0000', '150.0000', '177.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (782, '2018-10-26', 200, 814, 80, 466, '3.0000', '381.3559', '450.0000', '150.0000', '177.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (783, '2018-10-26', 209, 815, 80, 475, '3.0000', '423.7288', '500.0000', '165.0000', '194.7000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (784, '2018-10-26', 205, 816, 80, 471, '3.0000', '423.7288', '500.0000', '185.0000', '218.3000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (785, '2018-10-26', 207, 817, 80, 473, '3.0000', '423.7288', '500.0000', '195.0000', '230.1000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (786, '2018-10-27', 240, 818, 81, 517, '12.0000', '380.0000', '448.4000', '475.0000', '560.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (787, '2018-10-27', 241, 819, 81, 518, '12.0000', '360.0000', '424.8000', '475.0000', '560.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (788, '2018-10-27', 242, 820, 81, 519, '12.0000', '310.0000', '365.8000', '425.0000', '501.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (789, '2018-10-27', 244, 821, 81, 520, '12.0000', '280.0000', '330.4000', '375.0000', '442.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (790, '2018-10-27', 246, 822, 81, 527, '12.0000', '280.0000', '330.4000', '375.0000', '442.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (791, '2018-10-27', 250, 823, 81, 521, '12.0000', '220.0000', '259.6000', '350.0000', '413.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (792, '2018-10-27', 247, 824, 81, 522, '12.0000', '255.0000', '300.9000', '350.0000', '413.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (793, '2018-10-27', 248, 825, 81, 523, '12.0000', '190.0000', '224.2000', '275.0000', '324.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (794, '2018-10-27', 249, 826, 81, 524, '12.0000', '200.0000', '236.0000', '285.0000', '336.3000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (795, '2018-10-27', 251, 827, 81, 525, '4.0000', '720.0000', '849.6000', '850.0000', '1003.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (796, '2018-10-27', 252, 828, 81, 526, '4.0000', '850.0000', '1003.0000', '1010.0000', '1191.8000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (797, '2018-10-27', 226, 829, 82, 491, '10.0000', '475.0000', '560.5000', '485.0000', '572.3000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (798, '2018-10-27', 227, 830, 82, 492, '10.0000', '575.0000', '678.5000', '585.0000', '690.3000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (799, '2018-10-27', 228, 831, 82, 493, '10.0000', '650.0000', '767.0000', '650.0000', '767.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (800, '2018-10-27', 229, 832, 82, 494, '3.0000', '850.0000', '1003.0000', '850.0000', '1003.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (801, '2018-10-27', 230, 833, 82, 495, '8.0000', '950.0000', '1121.0000', '950.0000', '1121.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (802, '2018-10-27', 231, 834, 82, 496, '5.0000', '1150.0000', '1357.0000', '1150.0000', '1357.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (803, '2018-10-27', 233, 835, 82, 497, '10.0000', '1250.0000', '1475.0000', '1250.0000', '1475.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (804, '2018-10-27', 235, 836, 82, 498, '1.0000', '1350.0000', '1593.0000', '1350.0000', '1593.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (805, '2018-10-27', 236, 837, 82, 499, '2.0000', '1195.0000', '1410.1000', '1195.0000', '1410.1000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (806, '2018-10-27', 195, 838, 83, 461, '9.0000', '635.5932', '750.0000', '225.0000', '265.5000', '39.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (808, '2018-10-27', 260, 840, 85, 557, '8.0000', '635.5932', '750.0000', '354.0000', '417.7200', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (809, '2018-10-27', 259, 841, 86, 559, '5.0000', '350.0000', '367.5000', '370.0000', '388.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (810, '2018-10-27', 261, 842, 86, 560, '4.0000', '200.0000', '210.0000', '225.0000', '236.2500', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (811, '2018-10-27', 262, 843, 86, 561, '8.0000', '125.0000', '128.7500', '135.0000', '139.0500', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (812, '2018-10-27', 264, 844, 86, 563, '3.0000', '2500.0000', '2950.0000', '3000.0000', '3540.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (813, '2018-10-27', 265, 845, 86, 564, '1.0000', '3000.0000', '3540.0000', '3600.0000', '4248.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (814, '2018-10-27', 269, 846, 86, 568, '11.0000', '225.0000', '265.5000', '288.0000', '339.8400', '57.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (815, '2018-10-27', 271, 847, 86, 570, '15.0000', '250.0000', '257.5000', '260.0000', '267.8000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (816, '2018-10-30', 194, 857, 88, 460, '10.0000', '635.5932', '750.0000', '190.0000', '224.2000', '14.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (817, '2018-10-30', 274, 858, 88, 595, '46.0000', '381.3559', '450.0000', '190.0000', '224.2000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (818, '2018-10-31', 275, 859, 89, 598, '15.0000', '669.4915', '790.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (819, '2018-10-31', 279, 860, 89, 601, '3.0000', '474.5763', '560.0000', '200.0000', '236.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (820, '2018-10-31', 277, 861, 89, 600, '3.0000', '474.5763', '560.0000', '200.0000', '236.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (821, '2018-10-31', 276, 862, 89, 599, '3.0000', '474.5763', '560.0000', '200.0000', '236.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (824, '2018-11-05', 226, 867, 93, 619, '2.0000', '475.0000', '560.5000', '483.4746', '570.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (825, '2018-11-05', 228, 868, 93, 620, '4.0000', '650.0000', '767.0000', '656.7797', '775.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (826, '2018-11-05', 229, 869, 93, 621, '10.0000', '850.0000', '1003.0000', '858.4746', '1013.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (827, '2018-11-05', 230, 870, 93, 622, '2.0000', '950.0000', '1121.0000', '957.6271', '1130.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (828, '2018-11-05', 231, 871, 93, 623, '5.0000', '1150.0000', '1357.0000', '1161.0169', '1370.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (829, '2018-11-05', 235, 872, 93, 624, '20.0000', '1350.0000', '1593.0000', '1355.9322', '1600.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (830, '2018-11-05', 281, 873, 93, 625, '5.0000', '550.0000', '649.0000', '559.3220', '660.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (831, '2018-11-05', 282, 874, 93, 626, '10.0000', '1313.5593', '1550.0000', '1038.9831', '1226.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (835, '2018-11-05', 286, 878, 95, 630, '12.0000', '1313.5593', '1550.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (836, '2018-11-05', 288, 879, 95, 632, '6.0000', '1652.5424', '1950.0000', '1203.3898', '1420.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (837, '2018-11-05', 289, 880, 95, 633, '12.0000', '1398.3051', '1650.0000', '650.0000', '767.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (838, '2018-11-05', 287, 881, 95, 631, '6.0000', '1950.0000', '1950.0000', '1203.3898', '1420.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (839, '2018-10-23', 134, 882, 66, 369, '12.0000', '423.7288', '500.0000', '225.0000', '265.5000', '0.0000', 1, 0, 363);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (840, '2018-10-23', 134, 883, 66, 366, '12.0000', '423.7288', '500.0000', '225.0000', '265.5000', '0.0000', 1, 0, 360);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (841, '2018-10-23', 45, 884, 66, 155, '6.0000', '491.5254', '580.0000', '225.0000', '265.5000', '0.0000', 1, 0, 149);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (842, '2018-10-23', 45, 885, 66, 154, '6.0000', '491.5254', '580.0000', '225.0000', '265.5000', '0.0000', 1, 0, 148);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (843, '2018-10-23', 44, 886, 66, 156, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 150);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (844, '2018-10-23', 44, 887, 66, 153, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 147);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (845, '2018-10-23', 44, 888, 66, 152, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 146);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (846, '2018-10-23', 44, 889, 66, 150, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 144);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (847, '2018-10-23', 43, 890, 66, 149, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 143);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (848, '2018-10-23', 43, 891, 66, 148, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 142);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (849, '2018-10-23', 43, 892, 66, 147, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 141);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (850, '2018-10-23', 43, 893, 66, 146, '6.0000', '474.5763', '560.0000', '225.0000', '265.5000', '0.0000', 1, 0, 140);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (851, '2018-10-23', 42, 894, 66, 145, '6.0000', '474.5763', '560.0000', '200.0000', '236.0000', '0.0000', 1, 0, 139);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (852, '2018-10-23', 42, 895, 66, 144, '6.0000', '474.5763', '560.0000', '200.0000', '236.0000', '0.0000', 1, 0, 138);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (853, '2018-10-23', 42, 896, 66, 143, '6.0000', '474.5763', '560.0000', '200.0000', '236.0000', '0.0000', 1, 0, 137);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (854, '2018-10-23', 42, 897, 66, 142, '6.0000', '474.5763', '560.0000', '200.0000', '236.0000', '0.0000', 1, 0, 136);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (855, '2018-10-23', 85, 898, 55, 256, '6.0000', '957.6271', '1130.0000', '400.0000', '472.0000', '0.0000', 1, 0, 250);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (856, '2018-10-23', 85, 899, 55, 255, '3.0000', '957.6271', '1130.0000', '357.6271', '422.0000', '0.0000', 1, 0, 249);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (857, '2018-10-23', 85, 900, 55, 254, '3.0000', '957.6271', '1130.0000', '357.6271', '422.0000', '0.0000', 1, 0, 248);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (858, '2018-10-23', 85, 901, 55, 253, '9.0000', '957.6271', '1130.0000', '357.6271', '422.0000', '0.0000', 1, 0, 247);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (859, '2018-10-23', 85, 902, 55, 252, '6.0000', '957.6271', '1130.0000', '357.6271', '422.0000', '0.0000', 1, 0, 246);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (860, '2018-10-23', 85, 903, 55, 251, '6.0000', '957.6271', '1130.0000', '357.6271', '422.0000', '0.0000', 1, 0, 245);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (861, '2018-10-23', 85, 904, 55, 250, '6.0000', '957.6271', '1130.0000', '357.6271', '422.0000', '0.0000', 1, 0, 244);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (862, '2018-10-23', 85, 905, 55, 249, '9.0000', '957.6271', '1130.0000', '357.6271', '422.0000', '0.0000', 1, 0, 243);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (863, '2018-10-23', 83, 906, 55, 241, '6.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 235);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (864, '2018-10-23', 83, 907, 55, 240, '12.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 234);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (865, '2018-10-23', 82, 908, 55, 239, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 233);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (866, '2018-10-23', 82, 909, 55, 238, '4.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 232);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (867, '2018-10-23', 82, 910, 55, 237, '3.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 231);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (868, '2018-10-23', 82, 911, 55, 236, '9.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 230);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (869, '2018-10-23', 82, 912, 55, 235, '9.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 229);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (870, '2018-10-23', 82, 913, 55, 234, '9.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 228);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (871, '2018-10-23', 82, 914, 55, 233, '9.0000', '1000.0000', '1180.0000', '400.0000', '472.0000', '0.0000', 1, 0, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (872, '2018-10-23', 81, 915, 55, 232, '6.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 226);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (873, '2018-10-23', 81, 916, 55, 231, '6.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 225);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (874, '2018-10-23', 81, 917, 55, 230, '6.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 224);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (875, '2018-10-23', 81, 918, 55, 229, '6.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 223);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (876, '2018-10-23', 81, 919, 55, 228, '6.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '6.0000', 1, 0, 222);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (877, '2018-10-23', 81, 920, 55, 227, '6.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '6.0000', 1, 0, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (878, '2018-10-23', 80, 921, 55, 226, '18.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 220);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (880, '2018-11-07', 291, 923, 97, 635, '4.0000', '2415.2542', '2850.0000', '1050.0000', '1239.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (881, '2018-11-07', 292, 924, 97, 636, '2.0000', '2542.3729', '3000.0000', '1050.0000', '1239.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (882, '2018-11-21', 298, 925, 98, 644, '11.0000', '391.0000', '461.3800', '254.2373', '300.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (883, '2018-11-21', 299, 926, 98, 645, '13.0000', '661.0169', '780.0000', '288.1356', '340.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (884, '2018-11-21', 300, 927, 98, 646, '11.0000', '754.2373', '890.0000', '330.5085', '390.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (885, '2018-11-21', 301, 928, 98, 647, '8.0000', '838.9831', '990.0000', '440.6780', '520.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (889, '2018-11-23', 293, 932, 100, 637, '60.0000', '15.0000', '17.7000', '18.0000', '21.2400', '1940.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (890, '2018-11-23', 293, 933, 100, 637, '80.0000', '15.0000', '17.7000', '19.0000', '22.4200', '1920.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (891, '2018-11-23', 293, 934, 100, 637, '100.0000', '15.0000', '17.7000', '20.0000', '23.6000', '1900.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (897, '2018-11-23', 295, 940, 101, 639, '50.0000', '40.0000', '47.2000', '55.0000', '64.9000', '3000.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (898, '2018-11-24', 319, 941, 102, 662, '6.0000', '1398.3051', '1650.0000', '700.0000', '826.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (899, '2018-11-24', 320, 942, 102, 663, '6.0000', '1398.3051', '1650.0000', '700.0000', '826.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (900, '2018-11-24', 321, 943, 102, 664, '3.0000', '1228.8136', '1450.0000', '589.8305', '696.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (901, '2018-11-24', 322, 944, 102, 665, '3.0000', '1313.5593', '1550.0000', '650.0000', '767.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (902, '2018-11-24', 323, 945, 102, 666, '9.0000', '1059.3220', '1250.0000', '519.4915', '613.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (903, '2018-11-24', 324, 946, 102, 667, '5.0000', '720.3390', '850.0000', '259.3220', '306.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (904, '2018-11-24', 325, 947, 102, 668, '6.0000', '805.0847', '950.0000', '325.4237', '384.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (905, '2018-11-24', 326, 948, 102, 669, '1.0000', '635.5932', '750.0000', '324.5763', '383.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (906, '2018-11-24', 328, 949, 102, 671, '16.0000', '296.6102', '350.0000', '259.3220', '306.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (907, '2018-11-24', 327, 950, 102, 670, '12.0000', '296.6102', '350.0000', '317.7966', '375.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (908, '2018-11-24', 327, 951, 102, 670, '6.0000', '296.6102', '350.0000', '317.7966', '375.0000', '12.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (909, '2018-11-29', 293, 952, 103, 637, '50.0000', '15.0000', '17.7000', '18.0000', '21.2400', '1710.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (910, '2018-11-29', 293, 953, 103, 637, '45.0000', '15.0000', '17.7000', '19.0000', '22.4200', '1715.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (911, '2018-11-29', 293, 954, 103, 637, '40.0000', '15.0000', '17.7000', '20.0000', '23.6000', '1720.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (916, '2018-12-08', 295, 959, 105, 639, '150.0000', '40.0000', '47.2000', '55.0000', '64.9000', '2850.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (917, '2018-12-01', 293, 960, 104, 637, '300.0000', '15.0000', '17.7000', '23.0000', '27.1400', '1325.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (918, '2018-12-01', 294, 961, 104, 638, '300.0000', '15.0000', '17.7000', '25.0000', '29.5000', '7810.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (919, '2018-12-01', 293, 962, 104, 637, '300.0000', '15.0000', '17.7000', '22.0000', '25.9600', '1325.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (920, '2018-12-12', 293, 963, 106, 637, '120.0000', '15.0000', '17.7000', '18.0000', '21.2400', '905.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (921, '2019-01-05', 293, 964, 107, 637, '60.0000', '15.0000', '17.7000', '18.0000', '21.2400', '845.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (922, '2019-01-05', 293, 965, 107, 637, '70.0000', '15.0000', '17.7000', '19.0000', '22.4200', '835.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (923, '2019-01-05', 293, 966, 107, 637, '30.0000', '15.0000', '17.7000', '19.0000', '22.4200', '875.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (924, '2019-01-05', 293, 967, 108, 637, '60.0000', '15.0000', '17.7000', '19.0000', '22.4200', '685.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (925, '2019-01-05', 294, 968, 108, 638, '40.0000', '15.0000', '17.7000', '16.0000', '18.8800', '7770.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (926, '2019-01-05', 293, 969, 109, 637, '60.0000', '15.0000', '17.7000', '18.0000', '21.2400', '625.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (927, '2019-01-05', 294, 970, 109, 638, '60.0000', '15.0000', '17.7000', '18.0000', '21.2400', '7710.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (928, '2019-01-05', 293, 971, 109, 637, '50.0000', '15.0000', '17.7000', '19.0000', '22.4200', '635.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (929, '2019-01-05', 294, 972, 109, 638, '45.0000', '15.0000', '17.7000', '20.0000', '23.6000', '7725.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (930, '2019-01-07', 293, 973, 110, 637, '100.0000', '15.0000', '17.7000', '17.0000', '20.0600', '475.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (931, '2019-01-07', 294, 974, 110, 638, '70.0000', '15.0000', '17.7000', '18.0000', '21.2400', '7595.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (932, '2019-01-07', 293, 975, 110, 637, '110.0000', '15.0000', '17.7000', '18.0000', '21.2400', '465.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (933, '2019-01-07', 294, 976, 110, 638, '100.0000', '15.0000', '17.7000', '19.0000', '22.4200', '7565.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (934, '2019-01-11', 293, 977, 111, 637, '100.0000', '15.0000', '17.7000', '18.0000', '21.2400', '265.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (935, '2019-01-11', 294, 978, 111, 638, '90.0000', '15.0000', '17.7000', '19.0000', '22.4200', '7405.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (940, '2019-01-12', 401, 996, 112, 763, '12.0000', '540.0000', '637.2000', '550.0000', '649.0000', '48.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (941, '2019-01-12', 402, 997, 112, 764, '12.0000', '540.0000', '637.2000', '550.0000', '649.0000', '48.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (942, '2019-01-12', 403, 998, 112, 765, '12.0000', '500.0000', '590.0000', '600.0000', '708.0000', '48.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (943, '2019-01-12', 404, 999, 112, 766, '12.0000', '500.0000', '590.0000', '600.0000', '708.0000', '48.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (944, '2019-01-31', 333, 1000, 114, 773, '81.0000', '635.0000', '749.3000', '645.0000', '761.1000', '27.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (945, '2019-01-31', 334, 1001, 114, 774, '45.0000', '720.0000', '849.6000', '730.0000', '861.4000', '15.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (946, '2019-01-31', 335, 1002, 114, 775, '36.0000', '593.0000', '699.7400', '603.0000', '711.5400', '12.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (947, '2019-02-04', 293, 1003, 115, 637, '60.0000', '15.0000', '17.7000', '18.0000', '21.2400', '205.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (948, '2019-02-04', 294, 1004, 115, 638, '50.0000', '15.0000', '17.7000', '19.0000', '22.4200', '7355.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (949, '2019-02-04', 293, 1005, 115, 637, '50.0000', '15.0000', '17.7000', '20.0000', '23.6000', '215.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (950, '2019-02-04', 294, 1006, 115, 638, '50.0000', '15.0000', '17.7000', '17.0000', '20.0600', '7355.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (951, '2019-02-27', 293, 1007, 116, 637, '50.0000', '15.0000', '17.7000', '17.0000', '20.0600', '105.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (952, '2019-02-27', 294, 1008, 116, 638, '50.0000', '15.0000', '17.7000', '19.0000', '22.4200', '7255.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (968, '2019-03-04', 436, 1024, 117, 816, '9.0000', '1059.3220', '1250.0000', '550.0000', '649.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (969, '2019-03-04', 326, 1025, 117, 669, '6.0000', '635.5932', '750.0000', '325.0000', '383.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (970, '2019-03-04', 144, 1026, 117, 393, '12.0000', '762.7119', '900.0000', '250.0000', '295.0000', '0.0000', 1, 0, 381);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (971, '2019-03-04', 435, 1027, 117, 815, '16.0000', '1059.3220', '1250.0000', '325.0000', '383.5000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (972, '2019-03-04', 323, 1028, 117, 666, '18.0000', '1059.3220', '1250.0000', '520.0000', '613.6000', '9.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (973, '2019-03-04', 437, 1029, 117, 817, '6.0000', '1322.0339', '1560.0000', '550.0000', '649.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (974, '2019-03-04', 142, 1030, 117, 384, '4.0000', '805.0847', '950.0000', '240.0000', '283.2000', '32.0000', 1, 0, 378);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (975, '2019-03-04', 148, 1031, 117, 398, '6.0000', '1152.5424', '1360.0000', '450.0000', '531.0000', '0.0000', 1, 0, 386);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (976, '2019-03-06', 181, 1032, 119, 437, '18.0000', '805.0847', '950.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (977, '2019-03-06', 13, 1033, 119, 39, '18.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '1.0000', 1, 0, 33);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (978, '2019-03-06', 13, 1034, 119, 38, '18.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '1.0000', 1, 0, 32);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (979, '2019-03-06', 13, 1035, 119, 40, '3.0000', '974.5763', '1150.0000', '400.0000', '472.0000', '6.0000', 1, 0, 34);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (980, '2019-03-06', 12, 1036, 119, 33, '12.0000', '974.5763', '1150.0000', '350.0000', '413.0000', '0.0000', 1, 0, 27);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (981, '2019-03-06', 12, 1037, 119, 32, '9.0000', '974.5763', '1150.0000', '350.0000', '413.0000', '3.0000', 1, 0, 26);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (982, '2019-03-06', 12, 1038, 119, 34, '3.0000', '974.5763', '1150.0000', '350.0000', '413.0000', '0.0000', 1, 0, 28);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (983, '2019-03-06', 24, 1039, 119, 80, '12.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '0.0000', 1, 0, 74);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (984, '2019-03-06', 35, 1040, 119, 115, '6.0000', '966.1017', '1140.0000', '375.0000', '442.5000', '0.0000', 1, 0, 109);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (985, '2019-03-06', 35, 1041, 119, 109, '3.0000', '966.1017', '1140.0000', '375.0000', '442.5000', '0.0000', 1, 0, 103);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (986, '2019-03-06', 11, 1042, 119, 28, '6.0000', '813.5593', '960.0000', '350.0000', '413.0000', '6.0000', 1, 0, 22);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (987, '2019-03-06', 38, 1043, 119, 128, '6.0000', '1008.4746', '1190.0000', '350.0000', '413.0000', '3.0000', 1, 0, 122);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (988, '2019-03-06', 38, 1044, 119, 127, '3.0000', '1008.4746', '1190.0000', '350.0000', '413.0000', '0.0000', 1, 0, 121);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (989, '2019-03-06', 29, 1045, 119, 90, '6.0000', '1144.0678', '1350.0000', '400.0000', '472.0000', '0.0000', 1, 0, 84);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (990, '2019-03-06', 25, 1046, 119, 84, '12.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 78);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (991, '2019-03-06', 15, 1047, 119, 52, '9.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 46);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (992, '2019-03-06', 15, 1048, 119, 51, '9.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '0.0000', 1, 0, 45);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (993, '2019-03-06', 19, 1049, 119, 67, '6.0000', '1016.9492', '1200.0000', '350.0000', '413.0000', '0.0000', 1, 0, 61);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (994, '2019-03-06', 19, 1050, 119, 123, '6.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '0.0000', 1, 0, 117);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (995, '2019-03-06', 19, 1051, 119, 122, '6.0000', '1016.9492', '1200.0000', '400.0000', '472.0000', '0.0000', 1, 0, 116);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (996, '2019-03-06', 66, 1052, 119, 190, '6.0000', '932.2034', '1100.0000', '350.0000', '413.0000', '0.0000', 1, 0, 184);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (997, '2019-03-06', 23, 1053, 119, 74, '6.0000', '932.2034', '1100.0000', '325.0000', '383.5000', '7.0000', 1, 0, 68);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (998, '2019-03-06', 113, 1054, 119, 308, '4.0000', '923.7288', '1090.0000', '375.0000', '442.5000', '0.0000', 1, 0, 302);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (999, '2019-03-06', 33, 1055, 119, 97, '15.0000', '1525.4237', '1800.0000', '500.0000', '590.0000', '0.0000', 1, 0, 91);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1000, '2019-03-06', 61, 1056, 120, 179, '6.0000', '889.8305', '1050.0000', '300.0000', '354.0000', '0.0000', 1, 0, 173);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1001, '2019-03-06', 86, 1057, 120, 257, '12.0000', '1000.0000', '1180.0000', '375.0000', '442.5000', '0.0000', 1, 0, 251);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1002, '2019-03-06', 81, 1058, 120, 227, '6.0000', '915.2542', '1080.0000', '375.0000', '442.5000', '0.0000', 1, 0, 221);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1003, '2019-03-06', 96, 1059, 120, 279, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 273);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1004, '2019-03-06', 96, 1060, 120, 280, '6.0000', '1084.7458', '1280.0000', '375.0000', '442.5000', '0.0000', 1, 0, 274);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1005, '2019-03-06', 82, 1061, 120, 233, '2.0000', '1000.0000', '1180.0000', '375.0000', '442.5000', '4.0000', 1, 0, 227);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1006, '2019-03-06', 286, 1062, 120, 630, '12.0000', '1313.5593', '1550.0000', '500.0000', '590.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1007, '2019-03-06', 408, 1063, 120, 788, '6.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '18.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1008, '2019-03-06', 408, 1064, 120, 788, '6.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '18.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1009, '2019-03-06', 92, 1065, 120, 274, '6.0000', '838.9831', '990.0000', '250.0000', '295.0000', '6.0000', 1, 0, 268);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1010, '2019-03-06', 93, 1066, 120, 275, '6.0000', '838.9831', '990.0000', '225.0000', '265.5000', '0.0000', 1, 0, 269);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1011, '2019-03-06', 94, 1067, 120, 276, '6.0000', '838.9831', '990.0000', '225.0000', '265.5000', '0.0000', 1, 0, 270);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1012, '2019-03-06', 440, 1068, 120, 820, '12.0000', '1008.4746', '1190.0000', '375.0000', '442.5000', '12.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1013, '2019-03-06', 441, 1069, 120, 821, '6.0000', '1059.3220', '1250.0000', '400.0000', '472.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1014, '2019-03-06', 439, 1070, 120, 819, '4.0000', '889.8305', '1050.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1015, '2019-03-07', 333, 1071, 121, 773, '27.0000', '635.0000', '749.3000', '761.1000', '898.1000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1016, '2019-03-07', 334, 1072, 121, 774, '15.0000', '720.0000', '849.6000', '861.4000', '1016.4500', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1017, '2019-03-07', 335, 1073, 121, 775, '12.0000', '593.0000', '699.7400', '711.5400', '839.6200', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1151, '2019-03-07', 401, 1207, 122, 763, '12.0000', '457.6271', '540.0000', '550.0000', '649.0000', '36.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1152, '2019-03-07', 402, 1208, 122, 764, '12.0000', '457.6271', '540.0000', '550.0000', '649.0000', '36.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1153, '2019-03-07', 403, 1209, 122, 765, '12.0000', '423.7288', '500.0000', '600.0000', '708.0000', '36.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1154, '2019-03-07', 404, 1210, 122, 766, '12.0000', '423.7288', '500.0000', '600.0000', '708.0000', '36.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1155, '2019-03-20', 186, 1211, 123, 452, '1.0000', '1450.0000', '1711.0000', '1500.0000', '1770.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1169, '2019-03-06', 254, 1225, 125, 552, '2.0000', '2780.0000', '3280.4000', '2200.0000', '2596.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1170, '2019-03-06', 255, 1226, 125, 553, '2.0000', '2700.0000', '3186.0000', '2200.0000', '2596.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1171, '2019-03-06', 4, 1227, 125, 13, '1.0000', '3500.0000', '4130.0000', '1530.0000', '1805.4000', '1.0000', 1, 0, 8);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1172, '2019-03-06', 4, 1228, 125, 14, '2.0000', '3500.0000', '4130.0000', '1530.0000', '1805.4000', '5.0000', 1, 0, 9);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1173, '2019-03-06', 4, 1229, 125, 15, '1.0000', '3500.0000', '4130.0000', '1530.0000', '1805.4000', '1.0000', 1, 0, 10);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1174, '2019-03-06', 163, 1230, 125, 717, '3.0000', '2332.0000', '2751.7600', '2350.0000', '2773.0000', '2.0000', 1, 0, 401);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1175, '2019-03-06', 163, 1231, 125, 715, '3.0000', '2332.0000', '2751.7600', '2350.0000', '2773.0000', '2.0000', 1, 0, 403);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1176, '2019-03-06', 186, 1232, 125, 452, '2.0000', '1450.0000', '1711.0000', '1500.0000', '1770.0000', '4.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1177, '2019-03-06', 187, 1233, 125, 453, '1.0000', '1450.0000', '1711.0000', '1500.0000', '1770.0000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1178, '2019-03-06', 188, 1234, 125, 454, '1.0000', '1450.0000', '1711.0000', '1500.0000', '1770.0000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1179, '2019-03-06', 7, 1235, 125, 20, '2.0000', '1601.6949', '1890.0000', '750.0000', '885.0000', '39.0000', 1, 0, 14);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1180, '2019-03-06', 9, 1236, 125, 22, '2.0000', '1559.3220', '1840.0000', '700.0000', '826.0000', '23.0000', 1, 0, 16);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1181, '2019-03-06', 245, 1237, 125, 505, '8.0000', '1950.0000', '2301.0000', '2400.0000', '2832.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1182, '2019-04-12', 595, 1238, 126, 979, '3.0000', '500.0000', '500.0000', '500.0000', '590.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1183, '2019-04-12', 597, 1239, 126, 981, '5.0000', '590.0000', '696.2000', '590.0000', '696.2000', '10.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1184, '2019-04-12', 598, 1240, 126, 982, '4.0000', '450.0000', '531.0000', '450.0000', '531.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1185, '2019-04-12', 596, 1241, 126, 980, '3.0000', '450.0000', '531.0000', '450.0000', '531.0000', '7.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1186, '2019-04-12', 599, 1242, 126, 983, '2.0000', '700.0000', '826.0000', '700.0000', '826.0000', '7.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1187, '2019-04-12', 600, 1243, 126, 984, '2.0000', '450.0000', '531.0000', '450.0000', '531.0000', '3.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1188, '2019-04-12', 601, 1244, 126, 985, '5.0000', '750.0000', '885.0000', '750.0000', '885.0000', '10.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1189, '2019-04-12', 612, 1245, 126, 996, '7.0000', '500.0000', '590.0000', '500.0000', '590.0000', '13.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1190, '2019-04-12', 613, 1246, 126, 997, '10.0000', '500.0000', '590.0000', '500.0000', '590.0000', '20.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1191, '2019-04-12', 604, 1247, 126, 988, '5.0000', '500.0000', '590.0000', '500.0000', '590.0000', '10.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1192, '2019-04-12', 603, 1248, 126, 987, '3.0000', '500.0000', '590.0000', '500.0000', '590.0000', '7.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1193, '2019-04-12', 605, 1249, 126, 989, '3.0000', '400.0000', '472.0000', '400.0000', '472.0000', '7.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1194, '2019-04-12', 609, 1250, 126, 993, '4.0000', '400.0000', '472.0000', '400.0000', '472.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1195, '2019-04-12', 608, 1251, 126, 992, '4.0000', '500.0000', '590.0000', '500.0000', '590.0000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1196, '2019-04-12', 610, 1252, 126, 994, '1.0000', '400.0000', '472.0000', '500.0000', '590.0000', '4.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1197, '2019-04-12', 602, 1253, 126, 986, '1.0000', '500.0000', '590.0000', '500.0000', '590.0000', '4.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1198, '2019-04-12', 607, 1254, 126, 991, '2.0000', '400.0000', '472.0000', '400.0000', '472.0000', '3.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1253, '2019-04-12', 596, 1309, 127, 980, '4.0000', '450.0000', '531.0000', '450.0000', '531.0000', '3.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1254, '2019-04-12', 597, 1310, 127, 981, '5.0000', '590.0000', '696.2000', '590.0000', '696.2000', '5.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1255, '2019-04-12', 598, 1311, 127, 982, '3.0000', '450.0000', '531.0000', '450.0000', '531.0000', '3.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1256, '2019-04-12', 599, 1312, 127, 983, '4.0000', '700.0000', '826.0000', '700.0000', '826.0000', '3.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1257, '2019-04-12', 600, 1313, 127, 984, '1.0000', '450.0000', '531.0000', '450.0000', '531.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1258, '2019-04-12', 601, 1314, 127, 985, '5.0000', '750.0000', '885.0000', '750.0000', '885.0000', '5.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1259, '2019-04-12', 612, 1315, 127, 996, '6.0000', '500.0000', '590.0000', '500.0000', '590.0000', '7.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1260, '2019-04-12', 613, 1316, 127, 997, '10.0000', '500.0000', '590.0000', '500.0000', '590.0000', '10.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1261, '2019-04-12', 604, 1317, 127, 988, '5.0000', '500.0000', '590.0000', '500.0000', '590.0000', '5.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1262, '2019-04-12', 603, 1318, 127, 987, '4.0000', '500.0000', '590.0000', '500.0000', '590.0000', '3.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1263, '2019-04-12', 605, 1319, 127, 989, '3.0000', '400.0000', '472.0000', '400.0000', '472.0000', '4.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1264, '2019-04-12', 606, 1320, 127, 990, '1.0000', '500.0000', '590.0000', '500.0000', '590.0000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1265, '2019-04-12', 609, 1321, 127, 993, '3.0000', '400.0000', '472.0000', '400.0000', '472.0000', '3.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1266, '2019-04-12', 610, 1322, 127, 994, '2.0000', '400.0000', '472.0000', '500.0000', '590.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1267, '2019-04-12', 602, 1323, 127, 986, '2.0000', '500.0000', '590.0000', '500.0000', '590.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1268, '2019-04-12', 607, 1324, 127, 991, '2.0000', '400.0000', '472.0000', '400.0000', '472.0000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1269, '2019-04-12', 595, 1325, 127, 979, '3.0000', '423.7288', '500.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1270, '2019-04-12', 608, 1326, 127, 992, '4.0000', '500.0000', '590.0000', '500.0000', '590.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1271, '2019-05-04', 595, 1327, 128, 979, '3.0000', '500.0000', '500.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1272, '2019-05-04', 596, 1328, 128, 980, '3.0000', '450.0000', '531.0000', '450.0000', '531.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1273, '2019-05-04', 597, 1329, 128, 981, '5.0000', '590.0000', '696.2000', '590.0000', '696.2000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1274, '2019-05-04', 598, 1330, 128, 982, '2.0000', '450.0000', '531.0000', '450.0000', '531.0000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1275, '2019-05-04', 599, 1331, 128, 983, '1.0000', '700.0000', '826.0000', '700.0000', '826.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1276, '2019-05-04', 600, 1332, 128, 984, '2.0000', '450.0000', '531.0000', '450.0000', '531.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1277, '2019-05-04', 601, 1333, 128, 985, '5.0000', '750.0000', '885.0000', '750.0000', '885.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1278, '2019-05-04', 612, 1334, 128, 996, '7.0000', '500.0000', '590.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1279, '2019-05-04', 613, 1335, 128, 997, '10.0000', '500.0000', '590.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1280, '2019-05-04', 604, 1336, 128, 988, '5.0000', '500.0000', '590.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1281, '2019-05-04', 603, 1337, 128, 987, '3.0000', '500.0000', '590.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1282, '2019-05-04', 605, 1338, 128, 989, '3.0000', '400.0000', '472.0000', '400.0000', '472.0000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1283, '2019-05-04', 606, 1339, 128, 990, '1.0000', '500.0000', '590.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1284, '2019-05-04', 609, 1340, 128, 993, '3.0000', '400.0000', '472.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1285, '2019-05-04', 608, 1341, 128, 992, '2.0000', '500.0000', '590.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1286, '2019-05-04', 610, 1342, 128, 994, '2.0000', '400.0000', '472.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1287, '2019-05-04', 602, 1343, 128, 986, '2.0000', '500.0000', '590.0000', '500.0000', '590.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1288, '2019-05-04', 607, 1344, 128, 991, '1.0000', '400.0000', '472.0000', '400.0000', '472.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1289, '2019-05-06', 714, 1345, 129, 1104, '6.0000', '381.3559', '450.0000', '450.0000', '531.0000', '6.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1290, '2019-05-06', 293, 1346, 130, 637, '25.0000', '15.0000', '17.7000', '18.0000', '21.2400', '80.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1291, '2019-05-08', 614, 1347, 131, 1003, '480.0000', '11.7500', '13.8700', '20.0000', '23.6000', '1788.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1292, '2019-05-21', 295, 1348, 132, 639, '18.0000', '40.0000', '47.2000', '40.0000', '47.2000', '2832.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1293, '2019-05-30', 401, 1349, 133, 763, '2.0000', '540.0000', '637.2000', '550.0000', '649.0000', '34.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1294, '2019-05-30', 402, 1350, 133, 764, '2.0000', '540.0000', '637.2000', '550.0000', '649.0000', '34.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1295, '2019-06-03', 293, 1351, 134, 637, '30.0000', '15.0000', '17.7000', '18.0000', '21.2400', '50.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1296, '2019-06-03', 294, 1352, 134, 638, '30.0000', '15.0000', '17.7000', '20.0000', '23.6000', '7225.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1297, '2019-06-03', 293, 1353, 135, 637, '30.0000', '15.0000', '17.7000', '20.0000', '23.6000', '20.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1298, '2019-06-03', 294, 1354, 135, 638, '20.0000', '15.0000', '17.7000', '19.0000', '22.4200', '7205.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1299, '2019-06-10', 293, 1355, 136, 637, '20.0000', '15.0000', '17.7000', '20.0000', '23.6000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1300, '2019-06-10', 614, 1356, 136, 1003, '30.0000', '11.7500', '13.8700', '15.0000', '17.7000', '1758.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1301, '2019-06-10', 294, 1357, 136, 638, '30.0000', '15.0000', '17.7000', '18.0000', '21.2400', '7175.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1302, '2019-06-22', 294, 1358, 137, 638, '23.0000', '15.0000', '17.7000', '18.0000', '21.2400', '7152.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1303, '2019-06-22', 294, 1359, 138, 638, '20.0000', '15.0000', '17.7000', '19.0000', '22.4200', '7132.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1306, '2019-07-01', 614, 1362, 140, 1003, '1554.0000', '11.7500', '13.8700', '15.2800', '18.0300', '204.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1307, '2019-07-01', 294, 1363, 140, 638, '2070.0000', '15.0000', '17.7000', '25.0000', '29.5000', '5062.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1308, '2019-07-03', 614, 1364, 141, 1003, '94.0000', '11.7500', '13.8700', '45.0000', '53.1000', '110.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1309, '2019-07-23', 620, 1365, 142, 1010, '250.0000', '15.0000', '17.7000', '20.0000', '23.6000', '150.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1333, '2019-08-07', 790, 1389, 144, 1180, '1.0000', '296.6102', '350.0000', '350.0000', '413.0000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1343, '2019-08-07', 802, 1399, 144, 1192, '1.0000', '305.0847', '360.0000', '360.0000', '424.8000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1344, '2019-08-07', 803, 1400, 144, 1193, '1.0000', '372.8814', '440.0000', '440.0000', '519.2000', '1.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1347, '2019-08-01', 294, 1403, 143, 638, '600.0000', '15.0000', '17.7000', '20.0000', '23.6000', '4462.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1348, '2019-08-01', 614, 1404, 143, 1003, '110.0000', '11.7500', '13.8650', '15.0000', '17.7000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1349, '2019-08-01', 295, 1405, 143, 639, '600.0000', '40.0000', '47.2000', '50.0000', '59.0000', '2232.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1350, '2019-08-01', 783, 1406, 143, 1173, '600.0000', '19.0000', '22.4200', '24.0000', '28.3200', '5952.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1351, '2019-08-17', 294, 1407, 145, 638, '35.0000', '15.0000', '17.7000', '19.0000', '22.4200', '4427.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1352, '2019-08-17', 294, 1408, 145, 638, '40.0000', '15.0000', '17.7000', '20.0000', '23.6000', '4422.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1353, '2019-08-17', 294, 1409, 145, 638, '30.0000', '15.0000', '17.7000', '18.0000', '21.2400', '4432.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1354, '2019-08-31', 783, 1410, 146, 1173, '100.0000', '19.0000', '22.4200', '35.0000', '41.3000', '5852.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1355, '2019-09-14', 294, 1428, 148, 638, '50.0000', '15.0000', '17.7000', '22.0000', '25.9600', '4307.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1365, '2019-10-01', 875, 1438, 150, 1458, '40.0000', '10.0000', '11.8000', '23.0000', '27.1400', '9560.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1366, '2019-10-01', 842, 1439, 150, 1344, '40.0000', '11.5000', '13.5700', '21.1864', '25.0000', '8696.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1367, '2019-10-10', 875, 1440, 151, 1458, '39.0000', '10.0000', '11.8000', '20.0000', '23.6000', '9521.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1368, '2019-10-11', 877, 1441, 152, 1460, '50.0000', '12.0000', '14.1600', '30.0000', '35.4000', '718.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1374, '2019-10-16', 875, 1471, 153, 1458, '500.0000', '10.0000', '11.8000', '25.0000', '29.5000', '9021.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1375, '2019-10-16', 875, 1472, 153, 1458, '600.0000', '10.0000', '11.8000', '28.0000', '33.0400', '8921.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1376, '2019-10-16', 294, 1473, 153, 638, '400.0000', '15.0000', '17.7000', '25.0000', '29.5000', '3907.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1377, '2019-10-16', 294, 1474, 153, 638, '500.0000', '15.0000', '17.7000', '25.0000', '29.5000', '3807.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1378, '2019-10-16', 875, 1475, 153, 1458, '150.0000', '10.0000', '11.8000', '18.0000', '21.2400', '9371.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1379, '2019-09-24', 891, 1491, 154, 1500, '18.0000', '250.0000', '295.0000', '240.0000', '283.2000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1380, '2019-09-24', 892, 1492, 154, 1501, '6.0000', '650.0000', '767.0000', '650.0000', '767.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1381, '2019-09-24', 893, 1493, 154, 1503, '12.0000', '290.0000', '342.2000', '290.0000', '342.2000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1382, '2019-09-24', 894, 1494, 154, 1505, '12.0000', '390.0000', '460.2000', '390.0000', '460.2000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1383, '2019-09-24', 895, 1495, 154, 1507, '12.0000', '300.0000', '354.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1384, '2019-09-24', 896, 1496, 154, 1509, '6.0000', '390.0000', '460.2000', '390.0000', '460.2000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1385, '2019-09-24', 897, 1497, 154, 1511, '20.0000', '250.0000', '295.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1386, '2019-09-24', 898, 1498, 154, 1513, '15.0000', '80.0000', '94.4000', '80.0000', '94.4000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1387, '2019-09-24', 899, 1499, 154, 1515, '12.0000', '300.0000', '354.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1388, '2019-09-24', 900, 1500, 154, 1517, '15.0000', '80.0000', '94.4000', '80.0000', '94.4000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1389, '2019-09-24', 901, 1501, 154, 1519, '25.0000', '250.0000', '295.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1390, '2019-09-24', 902, 1502, 154, 1521, '18.0000', '240.0000', '283.2000', '240.0000', '283.2000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1391, '2019-09-24', 903, 1503, 154, 1523, '15.0000', '80.0000', '94.4000', '80.0000', '94.4000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1392, '2019-09-24', 904, 1504, 154, 1525, '15.0000', '80.0000', '94.4000', '80.0000', '94.4000', '14.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1393, '2019-09-24', 905, 1505, 154, 1527, '5.0000', '250.0000', '295.0000', '250.0000', '295.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1394, '2019-10-21', 907, 1506, 155, 1531, '11.0000', '300.0000', '354.0000', '300.0000', '354.0000', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1395, '2019-10-21', 908, 1507, 155, 1532, '8.0000', '290.0000', '342.2000', '290.0000', '342.2000', '3.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1398, '2019-10-21', 909, 1510, 156, 1540, '21.0000', '749.3000', '884.1740', '749.0000', '883.8200', '9.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1399, '2019-10-21', 910, 1511, 156, 1541, '32.0000', '861.4000', '1016.4520', '798.8600', '942.6500', '0.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1400, '2019-11-03', 294, 1512, 157, 638, '290.0000', '15.0000', '17.7000', '25.0000', '29.5000', '3117.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1401, '2019-11-03', 911, 1513, 157, 1545, '350.0000', '5.2500', '6.2000', '15.0000', '17.7000', '6694.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1402, '2019-11-03', 875, 1514, 157, 1458, '250.0000', '10.0000', '11.8000', '18.0000', '21.2400', '8021.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1403, '2019-11-15', 294, 1515, 158, 638, '50.0000', '15.0000', '17.7000', '25.0000', '29.5000', '3067.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1404, '2019-11-15', 911, 1516, 158, 1545, '65.0000', '5.2500', '6.2000', '20.0000', '23.6000', '6629.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1405, '2019-11-20', 294, 1517, 159, 638, '120.0000', '15.0000', '17.7000', '25.0000', '29.5000', '2947.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1406, '2019-11-20', 875, 1518, 159, 1458, '110.0000', '10.0000', '11.8000', '25.0000', '29.5000', '7911.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1407, '2019-11-20', 875, 1519, 159, 1458, '100.0000', '10.0000', '11.8000', '20.0000', '23.6000', '7921.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1408, '2019-12-10', 294, 1520, 160, 638, '600.0000', '15.0000', '17.7000', '25.0000', '29.5000', '2347.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1409, '2019-12-10', 875, 1521, 160, 1458, '800.0000', '10.0000', '11.8000', '20.0000', '23.6000', '7011.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1410, '2019-12-10', 294, 1522, 160, 638, '500.0000', '15.0000', '17.7000', '25.0000', '29.5000', '2447.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1411, '2019-12-10', 294, 1523, 160, 638, '500.0000', '15.0000', '17.7000', '28.0000', '33.0400', '2447.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1412, '2019-12-10', 875, 1524, 160, 1458, '100.0000', '10.0000', '11.8000', '25.0000', '29.5000', '7711.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1413, '2019-12-10', 875, 1525, 160, 1458, '116.0000', '10.0000', '11.8000', '20.0000', '23.6000', '7695.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1414, '2019-12-13', 783, 1526, 161, 1173, '500.0000', '19.0000', '22.4200', '85.0000', '100.3000', '5352.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1415, '2019-12-13', 617, 1527, 161, 1002, '72.0000', '56.8300', '67.0600', '170.0000', '200.6000', '2328.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1416, '2019-12-13', 295, 1528, 161, 639, '36.0000', '40.0000', '47.2000', '120.0000', '141.6000', '2196.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1417, '2019-12-13', 2147483647, 1529, 161, NULL, '48.0000', '0.0000', '0.0000', '85.0000', '100.3000', NULL, NULL, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1418, '2020-01-22', 294, 1530, 162, 638, '100.0000', '15.0000', '17.7000', '25.0000', '29.5000', '1247.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1419, '2020-01-22', 295, 1531, 162, 639, '100.0000', '40.0000', '47.2000', '90.0000', '106.2000', '2096.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1420, '2020-01-22', 842, 1532, 162, 1344, '85.0000', '11.5000', '13.5700', '16.9492', '20.0000', '8611.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1421, '2020-02-12', 783, 1533, 163, 1173, '280.0000', '19.0000', '22.4200', '30.0000', '35.4000', '5072.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1422, '2020-02-12', 780, 1534, 164, 1170, '160.0000', '36.7500', '43.3700', '50.0000', '59.0000', '1112.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1423, '2020-02-12', 875, 1535, 165, 1458, '400.0000', '10.0000', '11.8000', '20.0000', '23.6000', '6395.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1424, '2020-02-26', 875, 1536, 166, 1458, '100.0000', '10.0000', '11.8000', '30.0000', '35.4000', '6295.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1425, '2020-02-26', 911, 1537, 166, 1545, '100.0000', '5.2500', '6.2000', '25.0000', '29.5000', '6529.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1426, '2020-02-26', 295, 1538, 166, 639, '100.0000', '40.0000', '47.2000', '70.0000', '82.6000', '1996.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1427, '2020-02-26', 875, 1539, 166, 1458, '100.0000', '10.0000', '11.8000', '30.0000', '35.4000', '6295.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1428, '2020-02-26', 295, 1540, 166, 639, '80.0000', '40.0000', '47.2000', '80.0000', '94.4000', '2016.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1433, '2020-02-27', 875, 1545, 167, 1458, '68.0000', '10.0000', '11.8000', '30.0000', '35.4000', '6127.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1434, '2020-02-27', 911, 1546, 167, 1545, '75.0000', '5.2500', '6.1950', '20.0000', '23.6000', '6454.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1435, '2020-02-27', 842, 1547, 167, 1344, '90.0000', '11.5000', '13.5700', '21.1864', '25.0000', '8521.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1436, '2020-02-27', 295, 1548, 167, 639, '50.0000', '40.0000', '47.2000', '60.0000', '70.8000', '1866.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1437, '2020-03-06', 842, 1549, 168, 1344, '70.0000', '11.5000', '13.5700', '21.1864', '25.0000', '8451.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1438, '2020-03-06', 842, 1550, 168, 1344, '70.0000', '11.5000', '13.5700', '21.1864', '25.0000', '8451.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1439, '2020-03-06', 911, 1551, 168, 1545, '75.0000', '5.2500', '6.2000', '20.0000', '23.6000', '6379.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1440, '2020-03-06', 295, 1552, 168, 639, '50.0000', '40.0000', '47.2000', '80.0000', '94.4000', '1816.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1441, '2020-12-29', 752, 1553, 169, 1142, '1.0000', '118.6441', '140.0000', '211.0169', '249.0000', '2.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1442, '2020-12-29', 294, 1554, 169, 638, '1.0000', '15.0000', '17.7000', '15.0000', '17.7000', '1246.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1443, '2020-12-29', 875, 1555, 169, 1458, '1.0000', '10.0000', '11.8000', '10.0000', '11.8000', '6126.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1444, '2020-12-29', 620, 1556, 169, 1010, '1.0000', '15.0000', '17.7000', '15.0000', '17.7000', '107.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1445, '2020-12-29', 4, 1557, 170, 13, '1.0000', '3500.0000', '4130.0000', '2966.1017', '3500.0000', '0.0000', 1, 0, 8);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1446, '2020-12-29', 9, 1558, 170, 22, '1.0000', '1559.3220', '1840.0000', '1559.3220', '1840.0000', '22.0000', 1, 0, 16);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1447, '2020-12-29', 8, 1559, 170, 21, '1.0000', '1559.3220', '1840.0000', '1559.3220', '1840.0000', '1.0000', 1, 0, 15);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1448, '2021-01-13', 620, 1560, 171, 1010, '5.0000', '15.0000', '17.7000', '15.0000', '17.7000', '102.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1449, '2021-01-13', 8, 1561, 172, 21, '1.0000', '1559.3220', '1840.0000', '1559.3220', '1840.0000', '0.0000', 1, 0, 15);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1450, '2021-01-19', 875, 1562, 173, 1458, '1.0000', '10.0000', '11.8000', '10.0000', '11.8000', '6125.0000', 1, 0, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`) VALUES (1451, '2021-01-19', 620, 1563, 173, 1010, '1.0000', '15.0000', '17.7000', '15.0000', '17.7000', '101.0000', 1, 0, NULL);


#
# TABLE STRUCTURE FOR: sma_currencies
#

DROP TABLE IF EXISTS `sma_currencies`;

CREATE TABLE `sma_currencies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(5) NOT NULL,
  `name` varchar(55) NOT NULL,
  `rate` decimal(12,4) NOT NULL,
  `auto_update` tinyint(1) NOT NULL DEFAULT '0',
  `symbol` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_currencies` (`id`, `code`, `name`, `rate`, `auto_update`, `symbol`) VALUES (1, 'INR', 'Rupee', '1.0000', 0, '₹');


#
# TABLE STRUCTURE FOR: sma_customer_groups
#

DROP TABLE IF EXISTS `sma_customer_groups`;

CREATE TABLE `sma_customer_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `percent` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`) VALUES (1, 'General', 0);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`) VALUES (2, 'Reseller', 0);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`) VALUES (3, 'Distributor', 0);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`) VALUES (4, 'New Customer', 0);


#
# TABLE STRUCTURE FOR: sma_date_format
#

DROP TABLE IF EXISTS `sma_date_format`;

CREATE TABLE `sma_date_format` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `js` varchar(20) NOT NULL,
  `php` varchar(20) NOT NULL,
  `sql` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (1, 'mm-dd-yyyy', 'm-d-Y', '%m-%d-%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (2, 'mm/dd/yyyy', 'm/d/Y', '%m/%d/%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (3, 'mm.dd.yyyy', 'm.d.Y', '%m.%d.%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (4, 'dd-mm-yyyy', 'd-m-Y', '%d-%m-%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (5, 'dd/mm/yyyy', 'd/m/Y', '%d/%m/%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (6, 'dd.mm.yyyy', 'd.m.Y', '%d.%m.%Y');


#
# TABLE STRUCTURE FOR: sma_deliveries
#

DROP TABLE IF EXISTS `sma_deliveries`;

CREATE TABLE `sma_deliveries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `sale_id` int(11) NOT NULL,
  `do_reference_no` varchar(50) NOT NULL,
  `sale_reference_no` varchar(50) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `address` varchar(1000) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `status` varchar(15) DEFAULT NULL,
  `attachment` varchar(50) DEFAULT NULL,
  `delivered_by` varchar(50) DEFAULT NULL,
  `received_by` varchar(50) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_deposits
#

DROP TABLE IF EXISTS `sma_deposits`;

CREATE TABLE `sma_deposits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `company_id` int(11) NOT NULL,
  `amount` decimal(25,4) NOT NULL,
  `paid_by` varchar(50) DEFAULT NULL,
  `note` varchar(255) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_expense_categories
#

DROP TABLE IF EXISTS `sma_expense_categories`;

CREATE TABLE `sma_expense_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(55) NOT NULL,
  `name` varchar(55) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (1, 'Salary', 'Salary');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (2, 'Other Expense', 'Other Expense');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (3, 'Electronics', 'Electronics');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (4, 'Light Bill', 'Light Bill');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (5, 'Phone Bill', 'Phone bill');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (6, 'VB', 'VERA BILL');


#
# TABLE STRUCTURE FOR: sma_expenses
#

DROP TABLE IF EXISTS `sma_expenses`;

CREATE TABLE `sma_expenses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `reference` varchar(50) NOT NULL,
  `amount` decimal(25,4) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `created_by` varchar(55) NOT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;

INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (1, '2018-10-25 05:51:00', 'HAL-05/18-19', '13650.0000', '<p>Mens 260 GSM Viscose POLO RN/TShirt </p><p>5 Small</p><p>5 Medium</p><p>5 Large</p><p>5 XXL</p><p>CGST 9%</p><p>SGST 9%</p>', '1', '509d0c9f8a9dcb7c053de5e4a09ff975.jpeg', 2, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (2, '2018-07-27 17:00:00', '84', '14504.0000', '<p>1=led Complete Fixture(604-3W)===4200</p><p>2=18W Recessed Down Light===3136</p><p>3=4 Feet LED Batten Patti===7168</p>', '1', NULL, 3, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (3, '2018-11-03 07:16:00', '2018/11/0001', '3360.0000', '<p>Indigo travel</p><p> Booking On 4-10-2018</p><p>Ishawarbhai Sutariya</p>', '1', NULL, 2, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (4, '2018-11-30 04:42:00', '10/2018', '140.0000', '<p>Godaun</p>', '1', NULL, 4, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (5, '2018-11-30 04:42:00', '10/2018', '3950.0000', '<p>showroom</p>', '1', NULL, 4, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (6, '2018-12-04 04:00:00', '37977166', '140.0000', '<p>Godaun</p>', '1', NULL, 4, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (7, '2018-12-04 04:00:00', '37977164', '3280.0000', '<p>showroom</p>', '1', NULL, 4, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (8, '2018-12-05 04:25:00', 'SRT0010805121800003', '820.0000', '<p>0261-2431040</p>', '1', NULL, 5, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (10, '2018-12-12 08:45:00', 'SRT0010812121800066', '355.0000', '<p>0261-2441040</p>', '1', NULL, 5, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (11, '2018-12-12 08:46:00', 'SRT0010812121800065', '850.0000', '<p>0261-2431040</p>', '1', NULL, 5, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (12, '2019-01-04 08:13:00', '7401324', '140.0000', '<p>godaun</p>', '1', NULL, 4, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (13, '2019-01-04 08:14:00', '8140072', '1430.0000', '<p>shoroom</p>', '1', NULL, 4, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (14, '2019-01-25 09:52:00', '300\\180', '1874.0000', '<p>MONALI SANJAYKUMAR SHAH</p><p>SHOP NO 131</p>', '1', NULL, 6, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (15, '2019-01-25 09:53:00', '300\\179', '6331.0000', '<p>HASMUKHBHAI SHAMJIBHAI THAKRANI</p><p>SHOP NO 146</p>', '1', NULL, 6, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (16, '2019-02-05 07:08:00', '38378894', '1110.0000', '<p>SHOROOM</p>', '1', NULL, 4, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (17, '2019-02-05 07:09:00', '38378901', '150.0000', '<p>GODAUN</p>', '1', NULL, 4, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (18, '2019-02-02 07:10:00', 'WDCGJ0013253663', '824.0000', '<p>2431040</p>', '1', NULL, 5, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (19, '2019-02-02 07:10:00', 'WDCGJ0013253061', '180.0000', '<p>2441040</p>', '1', NULL, 5, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (20, '2019-03-23 07:21:00', 'WDCGJ0013912227', '176.0000', '<p>2441040</p>', '1', NULL, 5, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (21, '2019-03-05 18:05:00', 'WDCGJ0013918684', '830.0000', '<p>2431040</p>', '1', NULL, 5, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (22, '2019-03-05 18:05:00', '501073620', '130.0000', '', '1', NULL, 4, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (23, '2019-03-05 18:05:00', '50108637', '1240.0000', '', '1', NULL, 5, 1);


#
# TABLE STRUCTURE FOR: sma_gift_card_topups
#

DROP TABLE IF EXISTS `sma_gift_card_topups`;

CREATE TABLE `sma_gift_card_topups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `card_id` int(11) NOT NULL,
  `amount` decimal(15,4) NOT NULL,
  `created_by` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `card_id` (`card_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_gift_cards
#

DROP TABLE IF EXISTS `sma_gift_cards`;

CREATE TABLE `sma_gift_cards` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `card_no` varchar(20) NOT NULL,
  `value` decimal(25,4) NOT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `customer` varchar(255) DEFAULT NULL,
  `balance` decimal(25,4) NOT NULL,
  `expiry` date DEFAULT NULL,
  `created_by` varchar(55) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `card_no` (`card_no`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_gift_cards` (`id`, `date`, `card_no`, `value`, `customer_id`, `customer`, `balance`, `expiry`, `created_by`) VALUES (1, '2021-01-17 23:31:37', '5035719096161263', '5000.0000', 46, 'Demo Company', '5000.0000', '2023-01-18', '1');


#
# TABLE STRUCTURE FOR: sma_groups
#

DROP TABLE IF EXISTS `sma_groups`;

CREATE TABLE `sma_groups` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(20) NOT NULL,
  `description` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (1, 'owner', 'Owner');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (2, 'admin', 'Administrator');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (3, 'customer', 'Customer');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (4, 'supplier', 'Supplier');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (5, 'sales', 'Sales Staff');


#
# TABLE STRUCTURE FOR: sma_login_attempts
#

DROP TABLE IF EXISTS `sma_login_attempts`;

CREATE TABLE `sma_login_attempts` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `ip_address` varbinary(16) NOT NULL,
  `login` varchar(100) NOT NULL,
  `time` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_migrations
#

DROP TABLE IF EXISTS `sma_migrations`;

CREATE TABLE `sma_migrations` (
  `version` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `sma_migrations` (`version`) VALUES ('315');


#
# TABLE STRUCTURE FOR: sma_notifications
#

DROP TABLE IF EXISTS `sma_notifications`;

CREATE TABLE `sma_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `comment` text NOT NULL,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `from_date` datetime DEFAULT NULL,
  `till_date` datetime DEFAULT NULL,
  `scope` tinyint(1) NOT NULL DEFAULT '3',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_notifications` (`id`, `comment`, `date`, `from_date`, `till_date`, `scope`) VALUES (1, '<p>Press F11 key for full screen.</p>', '2014-08-14 17:30:57', '2015-01-01 00:00:00', '2017-01-01 00:00:00', 3);


#
# TABLE STRUCTURE FOR: sma_order_ref
#

DROP TABLE IF EXISTS `sma_order_ref`;

CREATE TABLE `sma_order_ref` (
  `ref_id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL,
  `so` int(11) NOT NULL DEFAULT '1',
  `qu` int(11) NOT NULL DEFAULT '1',
  `po` int(11) NOT NULL DEFAULT '1',
  `to` int(11) NOT NULL DEFAULT '1',
  `pos` int(11) NOT NULL DEFAULT '1',
  `do` int(11) NOT NULL DEFAULT '1',
  `pay` int(11) NOT NULL DEFAULT '1',
  `re` int(11) NOT NULL DEFAULT '1',
  `rep` int(11) NOT NULL DEFAULT '1',
  `ex` int(11) NOT NULL DEFAULT '1',
  `ppay` int(11) NOT NULL DEFAULT '1',
  `qa` int(11) DEFAULT '1',
  `cln` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`ref_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_order_ref` (`ref_id`, `date`, `so`, `qu`, `po`, `to`, `pos`, `do`, `pay`, `re`, `rep`, `ex`, `ppay`, `qa`, `cln`) VALUES (1, '2015-03-01', 158, 1, 12, 17, 25, 1, 59, 8, 1, 2, 10, 70, 1);


#
# TABLE STRUCTURE FOR: sma_payments
#

DROP TABLE IF EXISTS `sma_payments`;

CREATE TABLE `sma_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `sale_id` int(11) DEFAULT NULL,
  `return_id` int(11) DEFAULT NULL,
  `purchase_id` int(11) DEFAULT NULL,
  `reference_no` varchar(50) NOT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `paid_by` varchar(20) NOT NULL,
  `cheque_no` varchar(20) DEFAULT NULL,
  `cc_no` varchar(20) DEFAULT NULL,
  `cc_holder` varchar(25) DEFAULT NULL,
  `cc_month` varchar(2) DEFAULT NULL,
  `cc_year` varchar(4) DEFAULT NULL,
  `cc_type` varchar(20) DEFAULT NULL,
  `amount` decimal(25,4) NOT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `type` varchar(20) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `pos_paid` decimal(25,4) DEFAULT '0.0000',
  `pos_balance` decimal(25,4) DEFAULT '0.0000',
  `approval_code` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8;

INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (9, '2018-08-27 22:05:00', 9, NULL, NULL, 'IPAY2018/10/0020', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '10872.0000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (10, '2018-10-31 10:01:00', 10, NULL, NULL, 'IPAY2018/10/0021', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '11328.0000', NULL, 1, NULL, 'received', '<p>Payment Received on 28/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (11, '2018-10-31 10:02:00', 11, NULL, NULL, 'IPAY2018/10/0022', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '25488.0000', NULL, 1, NULL, 'received', '<p>Payment Received on 28/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (12, '2018-10-31 10:05:00', 39, NULL, NULL, 'IPAY2018/10/0023', NULL, 'Cheque', '178952', '', '', '', '', 'Visa', '14160.0000', NULL, 1, NULL, 'received', '<p>Payment Received on 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (13, '2018-11-03 08:11:00', 36, NULL, NULL, 'IPAY2018/11/0024', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '19116.0000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque recieved  date 28/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (14, '2018-11-03 08:13:00', 37, NULL, NULL, 'IPAY2018/11/0025', NULL, 'Cheque', '178951, 178952', '', '', '', '', 'Visa', '18850.5000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque received  date 28/08/2018, 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (15, '2018-11-03 08:14:00', 40, NULL, NULL, 'IPAY2018/11/0026', NULL, 'Cheque', '178952', '', '', '', '', 'Visa', '12036.0000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque received date 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (16, '2018-11-03 08:15:00', 41, NULL, NULL, 'IPAY2018/11/0027', NULL, 'Cheque', '178952', '', '', '', '', 'Visa', '23788.8000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque received date 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (17, '2018-11-03 08:16:00', 42, NULL, NULL, 'IPAY2018/11/0028', NULL, 'Cheque', '178952', '', '', '', '', 'Visa', '19470.0000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque received date 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (18, '2018-11-03 08:16:00', 43, NULL, NULL, 'IPAY2018/11/0029', NULL, 'Cheque', '178952', '', '', '', '', 'Visa', '8177.4000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque received date 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (19, '2018-11-03 08:17:00', 44, NULL, NULL, 'IPAY2018/11/0030', NULL, 'Cheque', '178952', '', '', '', '', 'Visa', '19027.5000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque received date 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (20, '2018-11-03 08:18:00', 45, NULL, NULL, 'IPAY2018/11/0031', NULL, 'Cheque', '178952', '', '', '', '', 'Visa', '8142.0000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque received date 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (21, '2018-11-03 08:18:00', 46, NULL, NULL, 'IPAY2018/11/0032', NULL, 'Cheque', '178952', '', '', '', '', 'Visa', '8496.0000', NULL, 1, NULL, 'received', '<p>Varachha Bank Cheque received date 29/08/2018</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (22, '2018-11-05 07:59:00', 66, NULL, NULL, 'IPAY2018/11/0033', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '27966.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (23, '2018-11-05 08:02:00', 49, NULL, NULL, 'IPAY2018/11/0034', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '12036.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (24, '2018-11-05 08:04:00', 47, NULL, NULL, 'IPAY2018/11/0035', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '31506.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (25, '2018-11-05 08:04:00', 48, NULL, NULL, 'IPAY2018/11/0036', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '29028.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (26, '2018-11-05 08:04:00', 50, NULL, NULL, 'IPAY2018/11/0037', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '28851.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (27, '2018-11-05 08:05:00', 51, NULL, NULL, 'IPAY2018/11/0038', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '31152.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (28, '2018-11-05 08:10:00', 54, NULL, NULL, 'IPAY2018/11/0039', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '40356.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (29, '2018-11-05 08:11:00', 52, NULL, NULL, 'IPAY2018/11/0040', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '29736.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (30, '2018-11-05 08:11:00', 53, NULL, NULL, 'IPAY2018/11/0041', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '56286.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (31, '2018-11-05 08:12:00', 55, NULL, NULL, 'IPAY2018/11/0042', NULL, 'Cheque', '178951', '', '', '', '', 'Visa', '14130.8000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (32, '2019-03-01 04:16:00', NULL, NULL, 11, 'POP2019/03/0002', NULL, 'Cheque', '172573', '', '', '', '', 'Visa', '66157.0000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (33, '2019-03-01 07:06:00', NULL, NULL, 20, 'POP2019/03/0003', NULL, 'Cheque', '172574', '', '', '', '', 'Visa', '147264.0000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (34, '2019-03-01 07:08:00', NULL, NULL, 1, 'POP2019/03/0004', NULL, 'Cheque', '172575', '', '', '', '', 'Visa', '82552.8000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (35, '2019-03-01 07:09:00', NULL, NULL, 8, 'POP2019/03/0005', NULL, 'Cheque', '172575', '', '', '', '', 'Visa', '42456.4000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (36, '2019-03-01 07:10:00', NULL, NULL, 6, 'POP2019/03/0006', NULL, 'Cheque', '172575', '', '', '', '', 'Visa', '21122.0000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (37, '2019-03-01 07:11:00', NULL, NULL, 7, 'POP2019/03/0007', NULL, 'Cheque', '172575', '', '', '', '', 'Visa', '3770.0000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (38, '2019-04-15 07:00:00', 105, NULL, NULL, 'IPAY2019/04/0044', NULL, 'cash', '', '', '', '', '', 'Visa', '9735.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (39, '2019-04-15 07:00:00', 104, NULL, NULL, 'IPAY2019/04/0045', NULL, 'cash', '', '', '', '', '', 'Visa', '24780.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (40, '2019-05-30 06:30:00', 133, NULL, NULL, 'IPAY2019/05/0046', NULL, 'cash', '', '', '', '', '', 'Visa', '2596.0000', NULL, 1, NULL, 'received', '<p>patti na badlama</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (41, '2019-06-03 08:50:00', 131, NULL, NULL, 'IPAY2019/06/0047', NULL, 'cash', '', '', '', '', '', 'Visa', '11328.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (42, '2019-06-03 08:50:00', 130, NULL, NULL, 'IPAY2019/06/0048', NULL, 'cash', '', '', '', '', '', 'Visa', '531.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (43, '2019-06-03 08:50:00', 116, NULL, NULL, 'IPAY2019/06/0049', NULL, 'cash', '', '', '', '', '', 'Visa', '2124.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (44, '2019-06-03 08:50:00', 115, NULL, NULL, 'IPAY2019/06/0050', NULL, 'cash', '', '', '', '', '', 'Visa', '4578.4000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (45, '2019-06-03 08:50:00', 109, NULL, NULL, 'IPAY2019/06/0051', NULL, 'cash', '', '', '', '', '', 'Visa', '4731.8000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (46, '2019-06-03 08:50:00', 100, NULL, NULL, 'IPAY2019/06/0052', NULL, 'cash', '', '', '', '', '', 'Visa', '5428.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (47, '2019-06-03 08:50:00', 106, NULL, NULL, 'IPAY2019/06/0053', NULL, 'cash', '', '', '', '', '', 'Visa', '2548.8000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (48, '2019-06-19 09:36:00', NULL, NULL, 14, 'POP2019/06/0008', NULL, 'cash', '', '', '', '', '', 'Visa', '58351.0000', NULL, 1, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (49, '2019-06-19 09:36:00', NULL, NULL, 7, 'POP2019/06/0009', NULL, 'Cheque', '172575', '', '', '', '', 'Visa', '40657.0000', NULL, 1, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (50, '2019-08-31 10:49:00', 146, NULL, NULL, 'IPAY2019/08/0054', NULL, 'cash', '', '', '', '', '', 'Visa', '4130.0000', NULL, 1, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (51, '2020-12-29 14:45:23', 169, NULL, NULL, 'IPAY2020/12/0055', NULL, 'cash', '', '', '', '', '', '', '297.0000', NULL, 1, NULL, 'received', '', '297.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (52, '2021-01-13 10:52:43', 171, NULL, NULL, 'IPAY2021/01/0056', NULL, 'cash', '', '', '', '', '', '', '89.0000', NULL, 1, NULL, 'received', '', '100.0000', '11.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (53, '2021-01-13 10:52:50', 172, NULL, NULL, 'IPAY2021/01/0057', NULL, 'cash', '', '', '', '', '', '', '1840.0000', NULL, 1, NULL, 'received', '', '2000.0000', '160.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (54, '2021-01-19 12:41:32', 173, NULL, NULL, 'IPAY2021/01/0058', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 1, NULL, 'received', '', '2000.0000', '1970.0000', NULL);


#
# TABLE STRUCTURE FOR: sma_paypal
#

DROP TABLE IF EXISTS `sma_paypal`;

CREATE TABLE `sma_paypal` (
  `id` int(11) NOT NULL,
  `active` tinyint(4) NOT NULL,
  `account_email` varchar(255) NOT NULL,
  `paypal_currency` varchar(3) NOT NULL DEFAULT 'USD',
  `fixed_charges` decimal(25,4) NOT NULL DEFAULT '2.0000',
  `extra_charges_my` decimal(25,4) NOT NULL DEFAULT '3.9000',
  `extra_charges_other` decimal(25,4) NOT NULL DEFAULT '4.4000',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `sma_paypal` (`id`, `active`, `account_email`, `paypal_currency`, `fixed_charges`, `extra_charges_my`, `extra_charges_other`) VALUES (1, 1, 'mypaypal@paypal.com', 'USD', '0.0000', '0.0000', '0.0000');


#
# TABLE STRUCTURE FOR: sma_permissions
#

DROP TABLE IF EXISTS `sma_permissions`;

CREATE TABLE `sma_permissions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_id` int(11) NOT NULL,
  `products-index` tinyint(1) DEFAULT '0',
  `products-add` tinyint(1) DEFAULT '0',
  `products-edit` tinyint(1) DEFAULT '0',
  `products-delete` tinyint(1) DEFAULT '0',
  `products-cost` tinyint(1) DEFAULT '0',
  `products-price` tinyint(1) DEFAULT '0',
  `quotes-index` tinyint(1) DEFAULT '0',
  `quotes-add` tinyint(1) DEFAULT '0',
  `quotes-edit` tinyint(1) DEFAULT '0',
  `quotes-pdf` tinyint(1) DEFAULT '0',
  `quotes-email` tinyint(1) DEFAULT '0',
  `quotes-delete` tinyint(1) DEFAULT '0',
  `sales-index` tinyint(1) DEFAULT '0',
  `sales-add` tinyint(1) DEFAULT '0',
  `sales-edit` tinyint(1) DEFAULT '0',
  `sales-pdf` tinyint(1) DEFAULT '0',
  `sales-email` tinyint(1) DEFAULT '0',
  `sales-delete` tinyint(1) DEFAULT '0',
  `purchases-index` tinyint(1) DEFAULT '0',
  `purchases-add` tinyint(1) DEFAULT '0',
  `purchases-edit` tinyint(1) DEFAULT '0',
  `purchases-pdf` tinyint(1) DEFAULT '0',
  `purchases-email` tinyint(1) DEFAULT '0',
  `purchases-delete` tinyint(1) DEFAULT '0',
  `transfers-index` tinyint(1) DEFAULT '0',
  `transfers-add` tinyint(1) DEFAULT '0',
  `transfers-edit` tinyint(1) DEFAULT '0',
  `transfers-pdf` tinyint(1) DEFAULT '0',
  `transfers-email` tinyint(1) DEFAULT '0',
  `transfers-delete` tinyint(1) DEFAULT '0',
  `customers-index` tinyint(1) DEFAULT '0',
  `customers-add` tinyint(1) DEFAULT '0',
  `customers-edit` tinyint(1) DEFAULT '0',
  `customers-delete` tinyint(1) DEFAULT '0',
  `suppliers-index` tinyint(1) DEFAULT '0',
  `suppliers-add` tinyint(1) DEFAULT '0',
  `suppliers-edit` tinyint(1) DEFAULT '0',
  `suppliers-delete` tinyint(1) DEFAULT '0',
  `sales-deliveries` tinyint(1) DEFAULT '0',
  `sales-add_delivery` tinyint(1) DEFAULT '0',
  `sales-edit_delivery` tinyint(1) DEFAULT '0',
  `sales-delete_delivery` tinyint(1) DEFAULT '0',
  `sales-email_delivery` tinyint(1) DEFAULT '0',
  `sales-pdf_delivery` tinyint(1) DEFAULT '0',
  `sales-gift_cards` tinyint(1) DEFAULT '0',
  `sales-add_gift_card` tinyint(1) DEFAULT '0',
  `sales-edit_gift_card` tinyint(1) DEFAULT '0',
  `sales-delete_gift_card` tinyint(1) DEFAULT '0',
  `pos-index` tinyint(1) DEFAULT '0',
  `sales-return_sales` tinyint(1) DEFAULT '0',
  `reports-index` tinyint(1) DEFAULT '0',
  `reports-warehouse_stock` tinyint(1) DEFAULT '0',
  `reports-quantity_alerts` tinyint(1) DEFAULT '0',
  `reports-expiry_alerts` tinyint(1) DEFAULT '0',
  `reports-products` tinyint(1) DEFAULT '0',
  `reports-daily_sales` tinyint(1) DEFAULT '0',
  `reports-monthly_sales` tinyint(1) DEFAULT '0',
  `reports-sales` tinyint(1) DEFAULT '0',
  `reports-payments` tinyint(1) DEFAULT '0',
  `reports-purchases` tinyint(1) DEFAULT '0',
  `reports-profit_loss` tinyint(1) DEFAULT '0',
  `reports-customers` tinyint(1) DEFAULT '0',
  `reports-suppliers` tinyint(1) DEFAULT '0',
  `reports-staff` tinyint(1) DEFAULT '0',
  `reports-register` tinyint(1) DEFAULT '0',
  `sales-payments` tinyint(1) DEFAULT '0',
  `purchases-payments` tinyint(1) DEFAULT '0',
  `purchases-expenses` tinyint(1) DEFAULT '0',
  `products-adjustments` tinyint(1) NOT NULL DEFAULT '0',
  `bulk_actions` tinyint(1) NOT NULL DEFAULT '0',
  `customers-deposits` tinyint(1) NOT NULL DEFAULT '0',
  `customers-delete_deposit` tinyint(1) NOT NULL DEFAULT '0',
  `products-barcode` tinyint(1) NOT NULL DEFAULT '0',
  `purchases-return_purchases` tinyint(1) NOT NULL DEFAULT '0',
  `reports-expenses` tinyint(1) NOT NULL DEFAULT '0',
  `reports-daily_purchases` tinyint(1) DEFAULT '0',
  `reports-monthly_purchases` tinyint(1) DEFAULT '0',
  `products-stock_count` tinyint(1) DEFAULT '0',
  `edit_price` tinyint(1) DEFAULT '0',
  `returns-index` tinyint(1) DEFAULT '0',
  `returns-add` tinyint(1) DEFAULT '0',
  `returns-edit` tinyint(1) DEFAULT '0',
  `returns-delete` tinyint(1) DEFAULT '0',
  `returns-email` tinyint(1) DEFAULT '0',
  `returns-pdf` tinyint(1) DEFAULT '0',
  `reports-tax` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_permissions` (`id`, `group_id`, `products-index`, `products-add`, `products-edit`, `products-delete`, `products-cost`, `products-price`, `quotes-index`, `quotes-add`, `quotes-edit`, `quotes-pdf`, `quotes-email`, `quotes-delete`, `sales-index`, `sales-add`, `sales-edit`, `sales-pdf`, `sales-email`, `sales-delete`, `purchases-index`, `purchases-add`, `purchases-edit`, `purchases-pdf`, `purchases-email`, `purchases-delete`, `transfers-index`, `transfers-add`, `transfers-edit`, `transfers-pdf`, `transfers-email`, `transfers-delete`, `customers-index`, `customers-add`, `customers-edit`, `customers-delete`, `suppliers-index`, `suppliers-add`, `suppliers-edit`, `suppliers-delete`, `sales-deliveries`, `sales-add_delivery`, `sales-edit_delivery`, `sales-delete_delivery`, `sales-email_delivery`, `sales-pdf_delivery`, `sales-gift_cards`, `sales-add_gift_card`, `sales-edit_gift_card`, `sales-delete_gift_card`, `pos-index`, `sales-return_sales`, `reports-index`, `reports-warehouse_stock`, `reports-quantity_alerts`, `reports-expiry_alerts`, `reports-products`, `reports-daily_sales`, `reports-monthly_sales`, `reports-sales`, `reports-payments`, `reports-purchases`, `reports-profit_loss`, `reports-customers`, `reports-suppliers`, `reports-staff`, `reports-register`, `sales-payments`, `purchases-payments`, `purchases-expenses`, `products-adjustments`, `bulk_actions`, `customers-deposits`, `customers-delete_deposit`, `products-barcode`, `purchases-return_purchases`, `reports-expenses`, `reports-daily_purchases`, `reports-monthly_purchases`, `products-stock_count`, `edit_price`, `returns-index`, `returns-add`, `returns-edit`, `returns-delete`, `returns-email`, `returns-pdf`, `reports-tax`) VALUES (1, 5, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);


#
# TABLE STRUCTURE FOR: sma_pos_register
#

DROP TABLE IF EXISTS `sma_pos_register`;

CREATE TABLE `sma_pos_register` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `user_id` int(11) NOT NULL,
  `cash_in_hand` decimal(25,4) NOT NULL,
  `status` varchar(10) NOT NULL,
  `total_cash` decimal(25,4) DEFAULT NULL,
  `total_cheques` int(11) DEFAULT NULL,
  `total_cc_slips` int(11) DEFAULT NULL,
  `total_cash_submitted` decimal(25,4) DEFAULT NULL,
  `total_cheques_submitted` int(11) DEFAULT NULL,
  `total_cc_slips_submitted` int(11) DEFAULT NULL,
  `note` text,
  `closed_at` timestamp NULL DEFAULT NULL,
  `transfer_opened_bills` varchar(50) DEFAULT NULL,
  `closed_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (1, '2018-10-05 11:40:47', 1, '50000.0000', 'close', '8761.0000', 22, 0, '8761.0000', 22, 0, '', '2019-03-18 14:03:30', NULL, 1);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (2, '2019-03-07 08:17:47', 2, '100.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (3, '2019-05-02 04:49:08', 1, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_pos_settings
#

DROP TABLE IF EXISTS `sma_pos_settings`;

CREATE TABLE `sma_pos_settings` (
  `pos_id` int(1) NOT NULL,
  `cat_limit` int(11) NOT NULL,
  `pro_limit` int(11) NOT NULL,
  `default_category` int(11) NOT NULL,
  `default_customer` int(11) NOT NULL,
  `default_biller` int(11) NOT NULL,
  `display_time` varchar(3) NOT NULL DEFAULT 'yes',
  `cf_title1` varchar(255) DEFAULT NULL,
  `cf_title2` varchar(255) DEFAULT NULL,
  `cf_value1` varchar(255) DEFAULT NULL,
  `cf_value2` varchar(255) DEFAULT NULL,
  `receipt_printer` varchar(55) DEFAULT NULL,
  `cash_drawer_codes` varchar(55) DEFAULT NULL,
  `focus_add_item` varchar(55) DEFAULT NULL,
  `add_manual_product` varchar(55) DEFAULT NULL,
  `customer_selection` varchar(55) DEFAULT NULL,
  `add_customer` varchar(55) DEFAULT NULL,
  `toggle_category_slider` varchar(55) DEFAULT NULL,
  `toggle_subcategory_slider` varchar(55) DEFAULT NULL,
  `cancel_sale` varchar(55) DEFAULT NULL,
  `suspend_sale` varchar(55) DEFAULT NULL,
  `print_items_list` varchar(55) DEFAULT NULL,
  `finalize_sale` varchar(55) DEFAULT NULL,
  `today_sale` varchar(55) DEFAULT NULL,
  `open_hold_bills` varchar(55) DEFAULT NULL,
  `close_register` varchar(55) DEFAULT NULL,
  `keyboard` tinyint(1) NOT NULL,
  `pos_printers` varchar(255) DEFAULT NULL,
  `java_applet` tinyint(1) NOT NULL,
  `product_button_color` varchar(20) NOT NULL DEFAULT 'default',
  `tooltips` tinyint(1) DEFAULT '1',
  `paypal_pro` tinyint(1) DEFAULT '0',
  `stripe` tinyint(1) DEFAULT '0',
  `rounding` tinyint(1) DEFAULT '0',
  `char_per_line` tinyint(4) DEFAULT '42',
  `pin_code` varchar(20) DEFAULT NULL,
  `purchase_code` varchar(100) DEFAULT 'purchase_code',
  `envato_username` varchar(50) DEFAULT 'envato_username',
  `version` varchar(10) DEFAULT '3.4.6',
  `after_sale_page` tinyint(1) DEFAULT '0',
  `item_order` tinyint(1) DEFAULT '0',
  `authorize` tinyint(1) DEFAULT '0',
  `toggle_brands_slider` varchar(55) DEFAULT NULL,
  `remote_printing` tinyint(1) DEFAULT '1',
  `printer` int(11) DEFAULT NULL,
  `order_printers` varchar(55) DEFAULT NULL,
  `auto_print` tinyint(1) DEFAULT '0',
  `customer_details` tinyint(1) DEFAULT NULL,
  `local_printers` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`pos_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `sma_pos_settings` (`pos_id`, `cat_limit`, `pro_limit`, `default_category`, `default_customer`, `default_biller`, `display_time`, `cf_title1`, `cf_title2`, `cf_value1`, `cf_value2`, `receipt_printer`, `cash_drawer_codes`, `focus_add_item`, `add_manual_product`, `customer_selection`, `add_customer`, `toggle_category_slider`, `toggle_subcategory_slider`, `cancel_sale`, `suspend_sale`, `print_items_list`, `finalize_sale`, `today_sale`, `open_hold_bills`, `close_register`, `keyboard`, `pos_printers`, `java_applet`, `product_button_color`, `tooltips`, `paypal_pro`, `stripe`, `rounding`, `char_per_line`, `pin_code`, `purchase_code`, `envato_username`, `version`, `after_sale_page`, `item_order`, `authorize`, `toggle_brands_slider`, `remote_printing`, `printer`, `order_printers`, `auto_print`, `customer_details`, `local_printers`) VALUES (1, 22, 20, 2, 1, 3, '1', 'GST No.', '', '24AIOPB1613L1ZH', '', NULL, 'x1C', 'Ctrl+F3', 'Ctrl+Shift+M', 'Ctrl+Shift+C', 'Ctrl+Shift+A', 'Ctrl+F11', 'Ctrl+F12', 'F4', 'F7', 'F9', 'F8', 'Ctrl+F1', 'Ctrl+F2', 'Ctrl+F10', 1, NULL, 0, 'default', 1, 0, 0, 4, 42, '12345678', 'purchase_code', 'envato_username', '3.4.11', 0, 0, 0, '', 1, NULL, 'null', 0, 1, 1);


#
# TABLE STRUCTURE FOR: sma_price_groups
#

DROP TABLE IF EXISTS `sma_price_groups`;

CREATE TABLE `sma_price_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_price_groups` (`id`, `name`) VALUES (1, 'Default');


#
# TABLE STRUCTURE FOR: sma_printers
#

DROP TABLE IF EXISTS `sma_printers`;

CREATE TABLE `sma_printers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(55) NOT NULL,
  `type` varchar(25) NOT NULL,
  `profile` varchar(25) NOT NULL,
  `char_per_line` tinyint(3) unsigned DEFAULT NULL,
  `path` varchar(255) DEFAULT NULL,
  `ip_address` varbinary(45) DEFAULT NULL,
  `port` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_product_photos
#

DROP TABLE IF EXISTS `sma_product_photos`;

CREATE TABLE `sma_product_photos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `photo` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_product_photos` (`id`, `product_id`, `photo`) VALUES (1, 102, '6de633417aa0fc06b9985518e1e6d093.jpeg');


#
# TABLE STRUCTURE FOR: sma_product_prices
#

DROP TABLE IF EXISTS `sma_product_prices`;

CREATE TABLE `sma_product_prices` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `price_group_id` int(11) NOT NULL,
  `price` decimal(25,4) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  KEY `price_group_id` (`price_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_product_variants
#

DROP TABLE IF EXISTS `sma_product_variants`;

CREATE TABLE `sma_product_variants` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `name` varchar(55) NOT NULL,
  `cost` decimal(25,4) DEFAULT NULL,
  `price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=415 DEFAULT CHARSET=utf8;

INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (8, 4, 'CLR: Black', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (9, 4, 'CLR: Brown', NULL, '0.0000', '5.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (10, 4, 'CLR: Tan', NULL, '0.0000', '1.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (11, 5, 'CLR: Brown', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (12, 5, 'CLR: Tan', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (13, 4, 'CLR: Metallic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (14, 7, 'CLR: Black', NULL, '0.0000', '39.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (15, 8, 'CLR: Black', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (16, 9, 'CLR: Black', NULL, '0.0000', '22.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (17, 10, 'CLR: Peanut', NULL, '0.0000', '1.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (18, 10, 'CLR: Choco', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (19, 10, 'CLR: Caramel', NULL, '0.0000', '1.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (20, 10, 'CLR: Coffee', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (21, 10, 'CLR: Pink', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (22, 11, 'LR: Honey Met', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (23, 11, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (24, 12, 'LR: Envy Tan', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (25, 12, 'LR: Golf Met', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (26, 12, 'LR: Botega', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (27, 12, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (28, 12, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (29, 12, 'LR: Sunshine', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (30, 12, 'LR: Honey Met', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (31, 12, 'LR: Evolution', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (32, 13, 'LR: Honey', NULL, '0.0000', '1.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (33, 13, 'LR: Evolution', NULL, '0.0000', '1.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (34, 13, 'LR: Envy Tan', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (35, 13, 'LR: Honey Met', NULL, '0.0000', '9.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (36, 13, 'LR: Golf Met', NULL, '0.0000', '9.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (37, 13, 'LR: Sunshine', NULL, '0.0000', '9.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (38, 14, 'LR: Honey', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (39, 14, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (40, 14, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (41, 14, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (42, 14, 'LR: Sun Shine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (43, 15, 'LR: Honey Met', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (44, 15, 'LR: Golf Met', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (45, 15, 'LR: Botega', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (46, 15, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (55, 17, 'LR: IMP Palmila', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (60, 19, 'LR: Golf Met', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (61, 19, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (62, 20, 'LR: Envy Tan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (63, 20, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (64, 20, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (65, 21, 'LR: IMP Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (66, 22, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (67, 22, 'LR: Sun Shine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (68, 23, 'LR: Palmila', NULL, '0.0000', '7.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (69, 15, 'LR: Envy Tan', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (70, 15, 'LR: Sun Shine', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (71, 24, 'LR: Metro', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (72, 24, 'LR: Honey Met', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (73, 24, 'LR: Sun Shine', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (74, 24, 'LR: Botega', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (75, 25, 'LR: Honey Met', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (76, 25, 'LR: Palmila', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (77, 25, 'LR: Metro', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (78, 25, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (79, 26, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (80, 26, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (81, 27, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (82, 27, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (83, 28, 'LR: IMP Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (84, 29, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (85, 29, 'LR: Botega', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (86, 30, 'LR: Metro', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (88, 32, 'LR: Metro', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (89, 32, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (90, 32, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (91, 33, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (92, 33, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (93, 34, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (94, 34, 'LR: Botega', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (95, 17, 'LR: Envy Tan', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (96, 17, 'LR: Honey Met', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (97, 17, 'LR: Golf Met', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (98, 17, 'LR: Botega', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (99, 17, 'LR: Magic', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (100, 17, 'LR: Metro', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (101, 17, 'LR: Palmila', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (102, 17, 'LR: Sunshine', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (103, 35, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (104, 35, 'LR: Golf', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (105, 35, 'LR: Palmila', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (106, 35, 'LR: Point', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (107, 35, 'LR: Golf Met', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (108, 35, 'LR: Honey Met', NULL, '50.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (109, 35, 'LR: Honey', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (110, 35, 'LR: Metro', NULL, '50.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (111, 35, 'LR: Magic 1', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (112, 36, 'LR: Golf', NULL, '0.0000', '18.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (113, 36, 'LR: Magic', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (114, 36, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (115, 19, 'LR: Palmila 1', NULL, '50.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (116, 19, 'LR: Honey Met', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (117, 19, 'LR: Metro', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (118, 19, 'LR: Envy Tan', NULL, '50.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (119, 37, 'LR: Indian Nova', NULL, '0.0000', '40.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (120, 38, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (121, 38, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (122, 38, 'LR: Metro', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (123, 38, 'LR:  Galan', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (124, 38, 'LR: Honey', NULL, '0.0000', '3.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (125, 39, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (126, 39, 'LR: Bali', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (127, 39, 'LR: Melodi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (128, 39, 'LR: Santafi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (129, 40, 'LR: Webs', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (130, 40, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (131, 40, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (132, 41, 'LR: Santafi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (133, 41, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (134, 41, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (135, 41, 'LR: Bali', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (136, 42, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (137, 42, 'LR: Melodi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (138, 42, 'LR: Bali', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (139, 42, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (140, 43, 'LR: Webs', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (141, 43, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (142, 43, 'LR: Santafi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (143, 43, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (144, 44, 'LR: Melodi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (145, 44, 'LR: Crystal', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (146, 44, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (147, 44, 'LR: Bali', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (148, 45, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (149, 45, 'LR: Melodi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (150, 44, 'LR: LCE', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (151, 46, 'LR: Indian Nova', NULL, '0.0000', '41.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (152, 47, 'LR: Indian Nova', NULL, '0.0000', '40.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (153, 48, 'LR: Indian Nova', NULL, '0.0000', '42.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (154, 49, 'LR: Indian Nova', NULL, '0.0000', '36.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (155, 50, 'LR: Indian Nova', NULL, '0.0000', '43.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (156, 51, 'LR: Indian Nova', NULL, '0.0000', '40.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (157, 52, 'LR: Indian Nova', NULL, '0.0000', '42.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (158, 53, 'LR: Indian Nova', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (159, 54, 'LR: Indian Nova', NULL, '0.0000', '20.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (160, 55, 'LR: Indian Nova', NULL, '0.0000', '26.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (161, 56, 'LR: Indian Nova', NULL, '0.0000', '28.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (162, 57, 'LR: Indian Nova', NULL, '0.0000', '7.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (163, 58, 'LR: Tango', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (164, 58, 'LR: Palmila', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (165, 58, 'LR: Magic', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (166, 59, 'LR: Tango', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (167, 59, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (168, 59, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (169, 59, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (170, 59, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (171, 60, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (172, 60, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (173, 61, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (174, 61, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (175, 62, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (176, 63, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (177, 63, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (178, 64, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (179, 64, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (180, 65, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (181, 65, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (182, 65, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (183, 65, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (184, 66, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (185, 66, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (186, 66, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (187, 67, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (188, 67, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (189, 68, 'LR: Metro', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (190, 69, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (191, 69, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (192, 70, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (193, 71, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (194, 71, 'LR:  Galan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (195, 72, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (196, 73, 'LR: Envy Tan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (197, 73, 'LR: Botega', NULL, '0.0000', '8.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (198, 73, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (199, 74, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (200, 74, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (201, 74, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (202, 75, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (203, 75, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (204, 75, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (205, 76, 'LR: Point', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (206, 76, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (207, 76, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (208, 76, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (209, 76, 'LR: Envy Tan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (210, 76, 'LR: Botega', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (211, 76, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (212, 76, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (213, 77, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (214, 77, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (215, 77, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (216, 78, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (217, 78, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (218, 78, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (219, 79, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (220, 80, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (221, 81, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (222, 81, 'LR: Honey Met', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (223, 81, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (224, 81, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (225, 81, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (226, 81, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (227, 82, 'LR:  Galan', NULL, '0.0000', '4.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (228, 82, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (229, 82, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (230, 82, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (231, 82, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (232, 82, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (233, 82, 'LR: Envy Tan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (234, 83, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (235, 83, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (243, 85, 'LR: Honey Met', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (244, 85, 'LR: Magic', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (245, 85, 'LR: Palmila', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (246, 85, 'LR: Point', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (247, 85, 'LR: Golf Met', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (248, 85, 'LR: Envy Tan', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (249, 85, 'LR: Evolution', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (250, 85, 'LR: Golf', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (251, 86, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (252, 87, 'LR: Envy Tan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (253, 87, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (254, 87, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (255, 87, 'LR: Golf Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (256, 88, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (257, 88, 'LR:  Galan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (258, 88, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (259, 88, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (260, 89, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (261, 90, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (262, 90, 'LR: Envy Tan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (263, 91, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (264, 91, 'LR:  Galan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (265, 91, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (266, 91, 'LR: Botega', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (267, 91, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (268, 92, 'LR: Imported', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (269, 93, 'LR: Imported', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (270, 94, 'LR: Imported', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (273, 96, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (274, 96, 'LR: Evolution', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (275, 97, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (276, 97, 'LR: Botega', NULL, '50.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (277, 98, 'LR: Botega', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (278, 99, 'LR:  Galan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (279, 100, 'LR:  Galan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (280, 101, 'LR: Botega', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (281, 101, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (282, 102, 'LR: Metro', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (283, 103, 'LR:  Galan', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (284, 104, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (285, 104, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (286, 105, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (287, 105, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (288, 106, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (289, 106, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (290, 107, 'LR: Sunshine', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (291, 107, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (292, 108, 'LR: IMP Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (293, 108, 'LR: IMP Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (294, 109, 'LR: IMP Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (295, 109, 'LR: IMP Palmila', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (296, 110, 'LR: IMP Palmila', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (297, 110, 'LR: IMP Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (298, 111, 'LR: IMP Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (299, 111, 'LR: IMP Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (300, 112, 'LR: IMP Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (301, 112, 'LR: IMP Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (302, 113, 'LR: IMP Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (303, 113, 'LR: IMP Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (308, 115, 'LR: Palmila', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (309, 115, 'LR: Bali', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (310, 115, 'LR: Melodi', NULL, '0.0000', '4.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (311, 115, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (312, 115, 'LR: Honey', NULL, '0.0000', '1.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (313, 116, 'LR: Point', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (314, 116, 'LR: Palmila', NULL, '0.0000', '1.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (315, 116, 'LR: Melodi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (316, 116, 'LR: Honey', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (317, 116, 'LR: Bali', NULL, '0.0000', '5.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (318, 117, 'LR: Honey', NULL, '0.0000', '4.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (319, 117, 'LR: Melodi', NULL, '0.0000', '1.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (320, 117, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (321, 117, 'LR: Bali', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (322, 118, 'LR: Bali', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (323, 118, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (324, 118, 'LR: Melodi', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (325, 119, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (326, 120, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (327, 121, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (328, 122, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (329, 123, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (330, 124, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (331, 125, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (332, 126, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (333, 127, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (334, 128, 'LR: Point', NULL, '0.0000', '24.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (335, 128, 'LR: Melodi', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (336, 128, 'LR: Honey', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (337, 128, 'LR: LCE', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (338, 129, 'LR: Santafi', NULL, '0.0000', '18.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (339, 129, 'LR: Metro', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (340, 129, 'LR: Bali', NULL, '0.0000', '18.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (341, 129, 'LR: Honey', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (342, 129, 'LR: Point', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (343, 129, 'LR: Melodi', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (350, 131, 'LR: Bali', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (351, 131, 'LR: Honey', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (352, 131, 'LR: LCE', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (353, 131, 'LR: Point', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (354, 131, 'LR: Santafi', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (355, 131, 'LR: Metro', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (356, 132, 'LR: Honey', NULL, '0.0000', '18.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (357, 132, 'LR: Melodi', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (358, 132, 'LR: Santafi', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (359, 133, 'LR: Melodi', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (360, 134, 'LR: LCE', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (361, 135, 'LR: Bali', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (362, 135, 'LR: Melodi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (363, 134, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (364, 136, 'LR: Point', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (365, 136, 'LR: Santafi', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (366, 137, 'LR: Webs', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (367, 137, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (368, 138, 'LR: LIPARI', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (369, 59, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (370, 139, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (371, 139, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (372, 139, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (373, 140, 'LR: Metro', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (374, 140, 'LR: Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (375, 140, 'LR: Honey Met', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (378, 142, 'LR: Imported', NULL, '0.0000', '32.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (379, 143, 'LR: Indian Nova', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (380, 143, 'LR: Magic', NULL, '200.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (381, 144, 'LR: Tommy', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (382, 144, 'LR: Rivet', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (383, 145, 'LR: Imported', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (384, 146, 'LR: Imported', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (385, 147, 'LR: Cobra', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (386, 148, 'LR: Imported', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (387, 149, 'LR: NHZ', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (388, 150, 'LR: NHZ', NULL, '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (389, 151, 'LR: NHZ', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (390, 152, 'LR: NHZ', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (391, 153, 'LR: NHZ', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (392, 154, 'LR: NHZ', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (393, 155, 'LR: NHZ', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (394, 156, 'LR: NHZ', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (395, 157, 'LR: NHZ', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (396, 158, 'LR: NHZ', NULL, '0.0000', '9.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (397, 159, 'LR: NHZ', NULL, '0.0000', '12.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (398, 160, 'LR: NHZ', NULL, '0.0000', '11.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (399, 161, 'LR: NHZ', NULL, '0.0000', '7.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (400, 162, 'LR: Cobra', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (401, 163, 'CLR: Black', '2751.7600', '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (402, 163, 'CLR: Brown', '2751.7600', '0.0000', '5.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (403, 163, 'CLR: Turquoise', '2751.7600', '0.0000', '2.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (405, 165, 'LR: KRT', NULL, '0.0000', '138.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (406, 166, 'LR: Honey', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (407, 166, 'LR: Tango', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (408, 14, 'LR: Magic', NULL, '1190.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (409, 25, 'LR: Evolution', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (410, 480, 'LR: IMP Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (411, 480, 'LR: IMP Palmila', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (412, 481, 'LR: IMP Magic', NULL, '0.0000', NULL);
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (413, 481, 'LR: IMP Palmila', NULL, '0.0000', '6.0000');
INSERT INTO `sma_product_variants` (`id`, `product_id`, `name`, `cost`, `price`, `quantity`) VALUES (414, 587, 'LR: Imported', NULL, '0.0000', '30.0000');


#
# TABLE STRUCTURE FOR: sma_products
#

DROP TABLE IF EXISTS `sma_products`;

CREATE TABLE `sma_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `unit` int(11) DEFAULT NULL,
  `cost` decimal(25,4) DEFAULT NULL,
  `price` decimal(25,4) NOT NULL,
  `alert_quantity` decimal(15,4) DEFAULT '20.0000',
  `image` varchar(255) DEFAULT 'no_image.png',
  `category_id` int(11) NOT NULL,
  `subcategory_id` int(11) DEFAULT NULL,
  `cf1` varchar(255) DEFAULT NULL,
  `cf2` varchar(255) DEFAULT NULL,
  `cf3` varchar(255) DEFAULT NULL,
  `cf4` varchar(255) DEFAULT NULL,
  `cf5` varchar(255) DEFAULT NULL,
  `cf6` varchar(255) DEFAULT NULL,
  `quantity` decimal(15,4) DEFAULT '0.0000',
  `tax_rate` int(11) DEFAULT NULL,
  `track_quantity` tinyint(1) DEFAULT '1',
  `details` varchar(1000) DEFAULT NULL,
  `warehouse` int(11) DEFAULT NULL,
  `barcode_symbology` varchar(55) NOT NULL DEFAULT 'code128',
  `file` varchar(100) DEFAULT NULL,
  `product_details` text,
  `tax_method` tinyint(1) DEFAULT '0',
  `type` varchar(55) NOT NULL DEFAULT 'standard',
  `supplier1` int(11) DEFAULT NULL,
  `supplier1price` decimal(25,4) DEFAULT NULL,
  `supplier2` int(11) DEFAULT NULL,
  `supplier2price` decimal(25,4) DEFAULT NULL,
  `supplier3` int(11) DEFAULT NULL,
  `supplier3price` decimal(25,4) DEFAULT NULL,
  `supplier4` int(11) DEFAULT NULL,
  `supplier4price` decimal(25,4) DEFAULT NULL,
  `supplier5` int(11) DEFAULT NULL,
  `supplier5price` decimal(25,4) DEFAULT NULL,
  `promotion` tinyint(1) DEFAULT '0',
  `promo_price` decimal(25,4) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `supplier1_part_no` varchar(50) DEFAULT NULL,
  `supplier2_part_no` varchar(50) DEFAULT NULL,
  `supplier3_part_no` varchar(50) DEFAULT NULL,
  `supplier4_part_no` varchar(50) DEFAULT NULL,
  `supplier5_part_no` varchar(50) DEFAULT NULL,
  `sale_unit` int(11) DEFAULT NULL,
  `purchase_unit` int(11) DEFAULT NULL,
  `brand` int(11) DEFAULT NULL,
  `slug` varchar(55) DEFAULT NULL,
  `featured` tinyint(1) DEFAULT NULL,
  `weight` decimal(10,4) DEFAULT NULL,
  `hsn_code` int(11) DEFAULT NULL,
  `views` int(11) NOT NULL DEFAULT '0',
  `hide` tinyint(1) NOT NULL DEFAULT '0',
  `second_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `category_id` (`category_id`),
  KEY `id` (`id`),
  KEY `id_2` (`id`),
  KEY `category_id_2` (`category_id`),
  KEY `unit` (`unit`),
  KEY `brand` (`brand`)
) ENGINE=InnoDB AUTO_INCREMENT=913 DEFAULT CHARSET=utf8;

INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (4, 'G7-M-OB-000001', 'G7 Office Bag', 2, '3500.0000', '3500.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-office-bag-000001', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (5, 'G7-M-OB-000002', 'G7 Office Bag', 2, '3350.0000', '3350.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-office-bag-000002', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (7, 'G7-M-SB-000001', 'G7 Side Bag', 2, '1890.0000', '1890.0000', '1.0000', 'no_image.png', 2, 13, '', '', '', '', '', '', '39.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag-000001', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (8, 'G7-M-SB-000002', 'G7 Side Bag', 2, '1840.0000', '1840.0000', '1.0000', 'no_image.png', 2, 13, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag-000002', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (9, 'G7-M-SB-000003', 'G7 Side Bag', 2, '1840.0000', '1840.0000', '1.0000', 'no_image.png', 2, 13, '', '', '', '', '', '', '22.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag-000003', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (10, 'G7-M-LWLT-0001', 'G7 Leather Wallet', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-0001', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (11, 'JI-M-IBLT-0001', 'JI Italian L Belt', 2, '340.0000', '960.0000', '1.0000', 'ce8388dfe1e0e2f41b4ad285a5204561.jpeg', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 2, '340.0000', '1150.0000', '1.0000', 'a7bd2d721fdc18be156b0b1935616b69.jpeg', 2, 16, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0002', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 2, '390.0000', '1150.0000', '1.0000', '584366af47ddbc841a51717b66331423.jpeg', 2, 16, '', '', '', '', '', '', '35.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0003', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 2, '340.0000', '1190.0000', '1.0000', '7d1d65aa577a6ca6ef0df3df904f5cf9.jpeg', 2, 16, '', '', '', '', '', '', '42.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0004', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 2, '1250.0000', '1250.0000', '1.0000', '19627afc1a3a44258c825b4a05c06358.jpeg', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0005', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 2, '1200.0000', '1200.0000', '1.0000', '438814852d90bf3bff5eabaa58197810.jpeg', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0007', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 2, '340.0000', '1200.0000', '1.0000', 'b49b8f3e1a359853aa1367869b3e77e6.jpeg', 2, 16, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0009', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (20, 'JI-M-IBLT-0010', 'JI Italian L Belt', 2, '1250.0000', '1250.0000', '1.0000', 'b5c0d4e2bf4a9233950df5b1820ecd76.jpeg', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0010', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (21, 'JI-M-IBLT-0011', 'JI Italian L Belt', 2, '1250.0000', '1250.0000', '1.0000', '9270a6be5caa2e19b20f99663de2c18f.jpeg', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0011', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (22, 'JI-M-IBLT-0012', 'JI Italian L Belt', 2, '1150.0000', '1150.0000', '1.0000', '188c1c19ac0b912b1b8c2d9dad60af90.jpeg', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0012', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (23, 'JI-M-IBLT-0013', 'JI Italian L Belt', 2, '315.0000', '1100.0000', '1.0000', 'b9b6a4b982681bed1e917d4520a6e89e.jpeg', 2, 16, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0013', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 2, '340.0000', '1100.0000', '1.0000', '150f708f7eabfc11f818073b7d3284eb.jpeg', 2, 16, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0014', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 2, '390.0000', '1250.0000', '1.0000', '17b6a7891400242c9967a789627f87b8.jpeg', 2, 16, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0015', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (26, 'JI-M-IBLT-0016', 'JI Italian L Belt', 2, '1100.0000', '1100.0000', '1.0000', '94d13e5f46344ad58bc3d7ecee251ad0.jpeg', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0016', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (27, 'JI-M-IBLT-0017', 'JI Italian L Belt', 2, '1100.0000', '1100.0000', '1.0000', 'fa493eef952f2e28312cf23281330d3b.jpeg', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0017', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (28, 'JI-M-IBLT-0018', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', '612854519892efdacc3b96dd60319849.jpeg', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0018', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (29, 'JI-M-IBLT-0019', 'JI Italian L Belt', 2, '390.0000', '1350.0000', '1.0000', '8b6c89a28e9880976b97a41c38f9c3ef.jpeg', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0019', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (30, 'Ji-M-IBB-0001', 'JI Italian  Brass Buckal', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 2, 17, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-brass-buckal', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (32, 'JI-M-IBS-0001', 'JI Italian Brass Bkl', 2, '1800.0000', '1800.0000', '1.0000', 'no_image.png', 2, 17, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italianbrass-bkl', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (33, 'JI-M-ISM-0001', 'JI Italian Steel Bkl', 2, '490.0000', '1800.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (34, 'JI-M-IEL-0001', 'JI Italian Ltd edition ', 2, '1940.0000', '1940.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-ltd-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 2, '365.0000', '1140.0000', '1.0000', '804545b908700746f3e52189e00cbdc7.jpeg', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0006', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '30.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-stone-bkl', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (37, 'JI-M-BBI-0001', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '40.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-brass-buckal-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (38, 'JI-M-IBLT-0008', 'JI Italian L Belt', 2, '340.0000', '1190.0000', '1.0000', '4bbc5d039821bd3ac701edbd2f103f1b.jpeg', 2, 16, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (39, 'JI-M-ILB-0001', 'JI Indian L Belt', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'JI-M-Indian L Belt-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (40, 'JI-M-ILB-0002', 'JI Indian L Belt', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0002', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (41, 'JI-M-ILB-0003', 'JI Indian L Belt', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0003', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (42, 'JI-M-ILB-0004', 'JI Indian L Belt', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0004', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (43, 'JI-M-ILB-0005', 'JI Indian L Belt', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0005', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (44, 'JI-M-ILB-0006', 'JI Indian L Belt', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '24.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0006', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (45, 'JI-M-ILB-0007', 'JI Indian L Belt', 2, '580.0000', '580.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0007', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (46, 'JI-M-BBI-0002', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '41.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0002', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (47, 'JI-M-BBI-0003', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '40.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0003', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (48, 'JI-M-BBI-0004', 'JI Ind Brass BKL', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '42.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-ind-brass-bkl-0004', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (49, 'JI-M-BBI-0005', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '36.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0005', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (50, 'JI-M-BBI-0006', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '43.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0006', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (51, 'JI-M-BBI-0007', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '40.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0007', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (52, 'JI-M-BBI-0008', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '42.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0008', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (53, 'JI-M-BBI-0009', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0009', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (54, 'JI-M-BBI-0010', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '20.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0010', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (55, 'JI-M-BBI-0011', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '26.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0011', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (56, 'JI-M-BBI-0012', 'JI Ind Brass Bkl', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '28.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0012', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (57, 'JI-M-BBI-0013', 'JI Ind Brass Bkl-30%', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ind-brass-bkl-0013', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (58, 'JI-M-IBLT-0020', 'JI Italian L Belt', 2, '1100.0000', '1100.0000', '1.0000', '2c6ab08d8efd5800105863300f44242a.jpeg', 2, 16, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0020', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', '4ced4558365f81023f3c51e08ac2c435.jpeg', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0021', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (60, 'JI-M-IBLT-0022', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0022', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (61, 'JI-M-IBLT-0023', 'JI Italian L Belt', 2, '290.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0023', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (62, 'JI-M-IBLT-0024', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0024', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (63, 'JI-M-IBLT-0025', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0025', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (64, 'JI-M-IBLT-0026', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0026', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 2, '1100.0000', '1100.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0027', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (66, 'JI-M-IBLT-0028', 'JI Italian L Belt', 2, '340.0000', '1100.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0028', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (67, 'JI-M-IBLT-0029', 'JI Italian L Belt', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0029', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (68, 'JI-M-IBLT-0030', 'JI Italian L Belt', 2, '1080.0000', '1080.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0030', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (69, 'JI-M-IBLT-0031', 'JI Italian L Belt', 2, '1230.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0031', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (70, 'JI-M-IBLT-0032', 'JI Italian L Belt', 2, '1080.0000', '1080.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0032', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (71, 'JI-M-IBLT-0033', 'JI Italian L Belt', 2, '1180.0000', '1180.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0033', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (72, 'JI-M-ISM-0002', 'JI Italian Steel BKL', 2, '1800.0000', '1800.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-0002', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (73, 'JI-M-IBLT-0034', 'JI Italian L Belt', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0034', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (74, 'JI-M-IBLT-0035', 'JI Italian L Belt', 2, '1230.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0035', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (75, 'JI-M-IBLT-0036', 'JI Italian L Belt', 2, '1230.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0036', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0037', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (77, 'JI-M-IBLT-0038', 'JI Italian L Belt', 2, '1230.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0038', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (78, 'JI-M-IBLT-0039', 'JI Italian L Belt', 2, '1230.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0039', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (79, 'JI-M-IBLT-0040', 'JI Italian L Belt', 2, '1080.0000', '1080.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0040', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (80, 'JI-M-IBLT-0041', 'JI Italian L Belt', 2, '1080.0000', '1080.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0041', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 2, '365.0000', '1080.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0042', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 2, '365.0000', '1180.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0043', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (83, 'JI-M-IBLT-0044', 'JI Italian L Belt', 2, '1080.0000', '1080.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0044', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 2, '1130.0000', '1130.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0045', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (86, 'JI-M-IBLT-0046', 'JI Italian L Belt', 2, '365.0000', '1180.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0046', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 2, '1180.0000', '1180.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0047', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 2, '1180.0000', '1180.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0048', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (89, 'JI-M-IBLT-0049', 'JI Italian L Belt', 2, '1180.0000', '1180.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0049', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (90, 'JI-M-IBLT-0050', 'JI Italian L Belt', 2, '1180.0000', '1180.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0050', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (91, 'JI-M-IBLT-0051', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0051', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (92, 'JI-M-LB-0001', 'JI Lock Belt', 2, '240.0000', '990.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (93, 'JI-M-LB-0002', 'JI Lock Belt', 2, '215.0000', '990.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-0002', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (94, 'JI-M-LB-0003', 'JI Lock Belt', 2, '215.0000', '990.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-0003', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (96, 'JI-M-IBLT-0052', 'JI Italian L Belt', 2, '365.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0052', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (97, 'JI-M-IEL-0002', 'JI Italian Ltd edition ', 2, '1230.0000', '1230.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-ltd-edition-0002', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (98, 'JI-M-IBLT-0053', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0053', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (99, 'JI-M-IBLT-0054', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0054', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (100, 'JI-M-IBLT-0055', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0055', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (101, 'JI-M-IBLT-0056', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0056', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (102, 'JI-M-IBLT-0057', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', '260e271a798e362cfedb6fb9d841d05a.jpeg', 2, 16, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0057', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (103, 'JI-M-IBLT-0058', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0058', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (104, 'JI-M-IBLT-0059', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 23, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0059', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (105, 'JI-M-IBLT-0060', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-l-belt-0060', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (106, 'JI-M-IBLT-0061', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0061', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (107, 'JI-M-IBLT-0062', 'JI Italian L Belt', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0062', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (108, 'JI-M-LB-0004', 'JI Lock Belt', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (109, 'JI-M-LB-0005', 'JI Lock Belt', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-0005', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (110, 'JI-M-LB-0006', 'JI Lock Belt', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-0006', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (111, 'JI-M-LB-0007', 'JI Lock Belt', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-0007', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (112, 'JI-M-LB-0008', 'JI Lock Belt', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-0008', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (113, 'JI-M-LB-0009', 'JI Lock Belt', 2, '365.0000', '1090.0000', '0.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-0009', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (115, 'JI-B-BBLT-0001', 'JI Boy Belt', 2, '440.0000', '440.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-boy-belt-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (116, 'JI-B-BBLT-0002', 'JI Boy Belt', 2, '440.0000', '440.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-boy-belt-0002', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (117, 'JI-B-BBLT-0003', 'JI Beby Belt', 2, '440.0000', '440.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-beby-belt-0003', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (118, 'JI-B-BBLT-0004', 'JI Boy Belt', 2, '440.0000', '440.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-boy-belt-0004', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (119, 'JI-M-IBLT-0063', 'JI Italian L Belt', 2, '890.0000', '890.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0063', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (120, 'JI-M-IBLT-0064', 'JI Italian L Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0064', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (121, 'JI-M-IBLT-0065', 'JI Italian L Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0065', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (122, 'JI-M-IBLT-0066', 'JI Italian L Belt', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0066', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (123, 'JI-M-IBLT-0067', 'JI Italian L Belt', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0067', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (124, 'JI-M-IBLT-0068', 'JI Italian L Belt', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0068', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (125, 'JI-M-IBLT-0069', 'JI Italian L Belt', 2, '990.0000', '990.0000', '0.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0069', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (126, 'JI-M-IBLT-0070', 'JI Italian L Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0070', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (127, 'JI-M-IBLT-0071', 'JI Italian L Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0071', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (128, 'JI-B-BBLT-0005', 'JI Boy Belt', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '60.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-boy-belt-0005', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (129, 'JI-B-BBLT-0006', 'JI Boy Belt', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '60.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-boy-belt-0006', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (131, 'JI-B-BBLT-0007', 'JI Boy Belt', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '42.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-boy-belt-0007', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (132, 'JI-B-BBLT-0008', 'JI Boy Belt', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '36.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-boy-belt-0008', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (133, 'JI-B-BBLT-0009', 'JI Baby Belt', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-baby-belt-0009', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (134, 'JI-M-ILB-0008', 'JI Indian L Belt', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (135, 'JI-M-ILB-0009', 'JI Indian L Belt', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0009', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (136, 'JI-M-ILB-0010', 'JI Indian L Belt', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0010', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (137, 'JI-M-ILB-0011', 'JI Indian L Belt', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-0011', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (138, 'JI-M-IEL-0003', 'JI Italian Ltd edition ', 2, '1650.0000', '1650.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-ltd-edition-0003', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (139, 'JI-M-IBLT-0072', 'JI Italian L Belt', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0072', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (140, 'JI-M-IBLT-0073', 'JI Italian L Belt', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0073', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (142, 'JI-M-IBLT-0075', 'JI Italian L Belt', 2, '950.0000', '950.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '32.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0075', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (143, 'JI-M-IBLT-0074', 'JI Italian L Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0074', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (144, 'JI-M-CB-0001', 'JI Cotton Belt', 2, '240.0000', '900.0000', '1.0000', 'no_image.png', 2, 28, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-cotton-belt-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (145, 'JI-M-IEL-0004', 'Italian Limited edition ', 2, '1490.0000', '1490.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'italian-limited-edition-0004', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (146, 'JI-M-IEL-0005', 'Italian Limited edition', 2, '1490.0000', '1490.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'italian-limited-edition-0005', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (147, 'JI-M-IEL-0006', 'Italian Limited edition', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'italian-limited-edition-0006', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (148, 'JI-M-IB-0001', 'JI Imported Belt', 2, '1360.0000', '1360.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imported-belt-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (149, 'JI-M-IEL-0007', 'JI Italian Limited edition', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition-0007', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (150, 'JI-W-WLBLT-0001', 'JI  Leather Belt', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0001', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (151, 'JI-W-WLBLT-0002', 'JI Leather Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0002', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (152, 'JI-W-WLBLT-0003', 'JI Leather Belt', 2, '900.0000', '900.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0003', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (153, 'JI-W-WLBLT-0004', 'JI Leather Belt', 2, '950.0000', '950.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0004', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (154, 'JI-W-WLBLT-0005', 'JI Leather Belt', 2, '950.0000', '950.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0005', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (155, 'JI-W-WLBLT-0006', 'JI Leather Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0006', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (156, 'JI-W-WLBLT-0007', 'JI Leather Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0007', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (157, 'JI-W-WLBLT-0008', 'JI Leather Belt', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0008', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (158, 'JI-W-WLBLT-0009', 'JI Leather Belt', 2, '240.0000', '550.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0009', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (159, 'JI-W-WLBLT-0010', 'JI Leather Belt', 2, '240.0000', '630.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0010', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (160, 'JI-W-WLBLT-0011', 'JI Leather Belt', 2, '550.0000', '550.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '11.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (161, 'JI-W-WLBLT-0012', 'JI Leather Belt', 2, '240.0000', '680.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-0012', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (162, 'JI-W-WLBLT-0013', 'JI Leather Belt', 2, '970.0000', '970.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-leather-belt-0013', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 2, '4250.0000', '4250.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '2751.7600', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag-0001', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (165, 'JI-M-ISM-0003', 'JI Italian Steel BKL', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '138.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-0003', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (166, 'JI-M-IBLT-0076', 'JI Italian L Belt', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-0076', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (167, 'JI-M-IBLT-0077-26', 'JI Italian L Belt-HONEY', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-honey', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (168, 'JI-M-IBLT-0078-36', 'JI Italian L Belt-BALI', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-bali', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (169, 'JI-M-IBLT-0079-23', 'JI Italian L Belt-MAGIC', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (170, 'JI-M-IBLT-0080-57', 'JI Italian L Belt-CROCO', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-croco', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (171, 'JI-M-IBLT-0081-58', 'JI Italian L Belt-PLAIN', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-plain', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (172, 'JI-M-IBLT-0082-59', 'JI Italian L Belt-GRACE', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-grace', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (173, 'JI-M-IBLT-0083-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 1, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (174, 'JI-M-IBLT-0084-60', 'JI Italian L Belt-TOBACCO', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-tobacco', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (175, 'JI-M-IBLT-0085-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (176, 'JI-M-IBLT-0086-48', 'JI Italian L Belt-IMPORTED', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (177, 'JI-M-IBLT-0087-48', 'JI Italian L Belt-IMPORTED', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (178, 'JI-M-IBLT-0088-48', 'JI Italian L Belt-IMPORTED', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (179, 'JI-M-IBLT-0089-48', 'JI Italian L Belt-IMPORTED', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (180, 'JI-M-IBLT-0090-48', 'JI Italian L Belt-IMPORTED', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (181, 'JI-M-IBLT-0091-48', 'JI Italian L Belt-IMPORTED', 2, '290.0000', '950.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (182, 'JI-M-IBLT-0092-48', 'JI Italian L Belt-IMPORTED', 2, '950.0000', '950.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (183, 'JI-M-IBLT-0093-48', 'JI Italian L Belt-IMPORTED', 2, '950.0000', '950.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (186, 'G7-M-OB-000003-3', 'G7 Office Bag-BROWN', 2, '2850.0000', '1770.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 10, '1711.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-office-bag-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (187, 'G7-M-OB-000003-1', 'G7 Office Bag-BLACK', 2, '2850.0000', '2850.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 10, '1711.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-office-bag-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (188, 'G7-M-OB-000003-4', 'G7 Office Bag-TAN', 2, '2850.0000', '2850.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 10, '1711.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-office-bag-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (189, 'G7-M-OB-000004-3', 'G7 Office Bag-BROWN', 2, '3850.0000', '3850.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 10, '2065.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-office-bag-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (190, 'G7-M-OB-000004-1', 'G7 Office Bag-BLACK', 2, '3850.0000', '3850.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 10, '2065.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-office-bag-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (191, 'G7-M-OB-000004-4', 'G7 Office Bag-TAN', 2, '3850.0000', '3850.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 10, '2065.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-office-bag-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (192, 'JI-M-IBLT-0094-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '48.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (193, 'JI-M-IBLT-0095-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '42.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (194, 'JI-M-IBLT-0096-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '14.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (195, 'JI-M-IBLT-0097-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '39.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (196, 'JI-M-IBLT-0098-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '48.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (197, 'JI-M-IBLT-0099-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '36.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (198, 'JI-M-IBLT-0100-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '42.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (199, 'JI-M-IBLT-0101-48', 'JI Italian L Belt-IMPORTED', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '24.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (200, 'G7-M-LWLT-0002-1', 'G7 Leather Wallet-BLACK', 2, '450.0000', '450.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '165.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MBlackWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (201, 'G7-M-LWLT-0002-3', 'G7 Leather Wallet-BROWN', 2, '450.0000', '450.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '153.4000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MBrownWallet', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (202, 'G7-M-LWLT-0003-1', 'G7 Leather Wallet-BLACK', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '165.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MBlackWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (203, 'G7-M-LWLT-0003-3', 'G7 Leather Wallet-BROWN', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '153.4000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MBrownWallet', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (204, 'G7-M-LWLT-0004-1', 'G7 Leather Wallet-BLACK', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '182.9000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MTanWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (205, 'G7-M-LWLT-0004-3', 'G7 Leather Wallet-BROWN', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '182.9000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MTanWallet', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (206, 'G7-M-LWLT-0005-1', 'G7 Leather Wallet-BLACK', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '188.8000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MPunchWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (207, 'G7-M-LWLT-0005-3', 'G7 Leather Wallet-BROWN', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '188.8000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MTanWallet', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (208, 'G7-M-LWLT-0006-1', 'G7 Leather Wallet-BLACK', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '200.6000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MPouchWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (209, 'G7-M-LWLT-0006-3', 'G7 Leather Wallet-BROWN', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '200.6000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MPouchWallet', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (210, 'G7-M-LWLT-0007-1', 'G7 Leather Wallet-BLACK', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (211, 'G7-M-LWLT-0007-3', 'G7 Leather Wallet-BROWN', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (212, 'G7-M-LWLT-0008-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (214, 'G7-M-LWLT-0009-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (215, 'G7-M-LWLT-0010-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (216, 'G7-M-LWLT-0011-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (217, 'G7-M-LWLT-0012-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (218, 'G7-M-LWLT-0013-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (219, 'G7-M-LWLT-0014-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (220, 'G7-M-LWLT-0015-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (221, 'G7-M-LWLT-0016-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (222, 'G7-M-LWLT-0017-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (223, 'G7-M-LWLT-0018-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (224, 'G7-M-LWLT-0019-68', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChainWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (225, 'G7-M-PWLT-0001-62', 'G7 Passport Wallet-PARPAL', 2, '500.0000', '500.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '295.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PassportCover', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet-parpal', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (226, 'G7-W-WLB-0002', 'G7 Ladies Bag ', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '560.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (227, 'G7-W-WLB-0003', 'G7 Ladies Bag', 2, '900.0000', '900.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '678.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (228, 'G7-W-WLB-0004', 'G7 Ladies Bag', 2, '950.0000', '950.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '767.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (229, 'G7-W-WLB-0005', 'G7 Ladies Bag', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '1003.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (230, 'G7-W-WLB-0006', 'G7 Ladies Bag', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '1121.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (231, 'G7-W-WLB-0007', 'G7 Ladies Bag', 2, '1700.0000', '1700.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '1357.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (232, 'G7-M-TB-0001', 'G7 Travelling Bag', 2, '4000.0000', '4000.0000', '1.0000', 'no_image.png', 2, 6, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '2950.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'CarryAll', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-travelling-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (233, 'G7-W-WLB-0008', 'G7 Ladies Bag', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '1475.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'style-9', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (235, 'G7-W-WLB-0009', 'G7 Ladies Bag', 2, '1950.0000', '1950.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '1593.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (236, 'G7-W-WLB-0010', 'G7 Ladies Bag', 2, '1750.0000', '1750.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '1410.1000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (237, 'G7-M-TB-0002', 'G7 Travelling Bag', 2, '5000.0000', '5000.0000', '1.0000', 'no_image.png', 2, 6, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3304.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'HoldAll', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-travelling-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (238, 'G7-M-JKT-0001', 'G7 Mens Jacket', 2, '6000.0000', '6000.0000', '1.0000', 'no_image.png', 2, 5, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '4484.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MensJacket', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mens-jacket', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (239, 'G7-B-BJKT-0001', 'G7 Kids Jacket', 2, '5500.0000', '5500.0000', '1.0000', 'no_image.png', 9, 10, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '4130.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'KidsJacket', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-kids-jacket', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (240, 'G7-M-LWLT-0020', 'G7 Leather Wallet-08', 2, '900.0000', '900.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '448.4000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '08', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-08', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (241, 'G7-M-LWLT-0021', 'G7 Leather Wallet-03', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '424.8000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-03', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (242, 'G7-M-LWLT-0022', 'G7 Leather Wallet-05', 2, '970.0000', '970.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '365.8000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '05', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-05', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (243, 'G7-W--WLB-0011', 'G7 Ladies Bag ', 2, '3250.0000', '3250.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '1652.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MixColorBags', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag-0011', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (244, 'G7-M-LWLT-0023', 'G7 Leather Wallet-10', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '330.4000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '11', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-10', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (245, 'G7-W-WLB-0012', 'G7 Ladies Bag ', 2, '2300.0000', '4250.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '2301.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'AntiqBags', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (246, 'G7-M-LWLT-0024', 'G7 Leather Wallet-11', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '330.4000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '11', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-11', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (247, 'G7-M-LWLT-0026', 'G7 Leather Wallet-09', 2, '890.0000', '890.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '300.9000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '09', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-09', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (248, 'G7-M-LWLT-0027', 'G7 Leather Wallet-01', 2, '650.0000', '650.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '224.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '01', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-01', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (249, 'G7-M-LWLT-0028', 'G7 Leather Wallet-031', 2, '650.0000', '650.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '236.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '03', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-031', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (250, 'G7-M-LWLT-0025', 'G7 Leather Wallet-07', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '259.6000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '07', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-07', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (251, 'G7-M-SLP-0001', 'G7 Slipper-no=10', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '849.6000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-slipper', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (252, 'G7-M-SLP-0002', 'G7 Slipper', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '1003.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-slipper', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (253, 'G7-M-LWLT-0029', 'G7 Mens Wallet', 2, '1000.0000', '1000.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '96.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '177.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'MensWallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mens-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (254, 'G7-M-HB-0001-3', 'G7 Leather Bag-BROWN', 2, '5500.0000', '5500.0000', '1.0000', 'no_image.png', 2, 11, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3280.4000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChrocodileLBag', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-bag-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (255, 'G7-M-HB-0001-1', 'G7 Leather Bag-BLACK', 2, '5500.0000', '5500.0000', '1.0000', 'no_image.png', 2, 11, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3186.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChrocodileLBag', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-bag-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (256, 'G7-M-HB-0002', 'G7 Holdbag Bag', 2, '7500.0000', '7500.0000', '1.0000', 'no_image.png', 2, 11, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '4967.8000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChrocodilePrintHoldAll', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-holdbag-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (257, 'G7-M-LWLT-0030', 'G7 Leather Wallet', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '0.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 10, '501.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Wallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (258, 'G7-M-LWLT-0031', 'G7 Leather Wallet', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '0.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 10, '383.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Wallet', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (259, 'G7-M-NT-0002', 'G7 Gift Set', 2, '550.0000', '550.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 3, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '367.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ZETC001', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-gift-set', NULL, '0.0000', 62159090, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (260, 'G7-M-ILB-0012', 'G7 Fancy Leather Belt', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-fancy-leather-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (261, 'G7-M-NT-0001', 'G7 Neck Tie', 2, '370.0000', '370.0000', '1.0000', 'no_image.png', 2, 34, '', '', '', '', '', '', NULL, 3, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '210.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'NT0008', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-neck-tie', NULL, '0.0000', 62159090, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (262, 'G7-M-BRP-0001', 'G7 Brooch Pin', 2, '250.0000', '250.0000', '1.0000', 'no_image.png', 2, 35, '', '', '', '', '', '', NULL, 7, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '128.7500', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ZL001-B60-M60', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-brooch-pin', NULL, '0.0000', 71171100, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (263, 'G7-M-CHB-0001', 'G7 Chest Bag', 2, '1000.0000', '1000.0000', '1.0000', 'no_image.png', 2, 36, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '472.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ChestBag', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-chest-bag', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (264, 'G7-M-LPB-0001', 'G7 Laptop Bag', 2, '4850.0000', '4850.0000', '1.0000', 'no_image.png', 2, 37, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '2950.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LaptopBag', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-laptop-bag', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (265, 'G7-M-LPB-0002', 'G7 Laptop Bag', 2, '5350.0000', '5350.0000', '1.0000', 'no_image.png', 2, 37, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '3540.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'LaptopBag', NULL, NULL, NULL, NULL, 0, 0, 2, 'G7-M-LPB-0002', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (266, 'G7-M-SLB-0001', 'G7 Sling Bag', 2, '1000.0000', '1000.0000', '1.0000', 'no_image.png', 2, 38, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '1003.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SlingBag', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-sling-bag', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (267, 'G7-M-SLB-0002', 'G7 Sling Bag', 2, '1000.0000', '1000.0000', '1.0000', 'no_image.png', 2, 38, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '1062.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ZGS002M', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-sling-bag', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (268, 'G7-M-LWLT-0033', 'G7 Zebru Wallet', 2, '1000.0000', '1000.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '354.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'WC002K1', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-zebru-wallet', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (269, 'G7-M-LWLT-0034', 'G7 Mens Wallet', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '57.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '265.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '225Wala', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mens-wallet', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (270, 'G7-M-LWLT-0035', 'G7 Wallet + Cardcase', 2, '1000.0000', '1000.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '531.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ZX1001/4', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-wallet-cardcase', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (271, 'G7-M-CFL-0001', 'G7 Cuffling', 2, '550.0000', '550.0000', '1.0000', 'no_image.png', 2, 39, '', '', '', '', '', '', NULL, 7, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '257.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ZebruCuffling', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-cuffling', NULL, '0.0000', 71171100, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (272, 'G7-M-LWLT-0036', 'G7 Leather Wallet', 2, '1000.0000', '1000.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '119.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '59.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'WE002K1', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet', NULL, '0.0000', 42023120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (273, 'G7-M-SLB-0003', 'G7 Sling Bag', 2, '1000.0000', '1000.0000', '1.0000', 'no_image.png', 2, 38, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '944.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ZGT0015K60', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-sling-bag', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (274, 'G7-M-LWLT-0032-63', 'G7 Leather Wallet-SFT', 2, '450.0000', '450.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-sft', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (275, 'G7-M-LWLT-0037-64', 'G7 Leather -COMBO', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-combo', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (276, 'G7-M-PWLT-0002-1', 'G7 Passport Wallet-Black', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (277, 'G7-M-PWLT-0002-3', 'G7 Passport Wallet-BROWN', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (279, 'G7-M-PWLT-0002-4', 'G7 Passport Wallet-TAN', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (281, 'G7-W-WLB-0013', 'G7 Ladies Bag', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 1250, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (282, 'JI-M-SFC-0001', 'JI Steel Fitting Casual', 2, '1550.0000', '1550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-steel-fitting-casual', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (283, 'G7-W-WMB-0001', 'G7 Mobile Bag', 2, '2300.0000', '2300.0000', '1.0000', 'no_image.png', 3, 42, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mobile-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (286, 'JI-M-ISM-0004-56', 'JI Italian Steel Bkl-KRT', 2, '490.0000', '1550.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-krt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (287, 'JI-M-ISB-0005', 'JI ltalian Steel Bkl', 2, '1950.0000', '1950.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ltalian-steel-bkl', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (288, 'JI-M-ISB-0006-65', 'JI ltalian Steel Bkl-Dimond', 2, '1950.0000', '1950.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ltalian-steel-bkl-dimond', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (289, 'JI-M-ISB-0007', 'JI Italian Steel Bkl', 2, '1650.0000', '1650.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (291, 'JI-M-CBLT-0001', 'JI Ceramic Belt - 35mm', 2, '2850.0000', '2850.0000', '1.0000', 'no_image.png', 2, 43, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceramic-belt-35mm', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (292, 'JI-M-CBLT-0002', 'JI Ceramic Belt - 40mm', 2, '3000.0000', '3000.0000', '1.0000', 'no_image.png', 2, 43, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceramic-belt-40mm', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (293, 'Buckle-1', 'Buckle', 2, '15.0000', '15.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'buckle', NULL, '0.0000', 83089099, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (294, 'Buckles-1', 'Buckls(metal)', 2, '15.0000', '15.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1246.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'bucklsmetal', NULL, '0.0000', 83089099, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 2, '40.0000', '40.0000', '1.0000', 'no_image.png', 2, 40, '', '', '', '', '', '', '1816.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'pu-belt-with-bucklepi', NULL, '0.0000', 42034090, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (296, 'JI-M-BK-0001', 'JI Back Pack', 2, '147.0000', '147.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'ji-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (297, 'Ji-bkl-0000', 'Belt with buckle', 2, '682.0000', '682.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'belt-with-buckle', NULL, '0.0000', 4203, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (298, 'JI-M-CWLT-0001', 'JI Chain Wallet(Esiposs)', 2, '670.0000', '670.0000', '1.0000', 'no_image.png', 2, 44, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-chain-walletesiposs', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (299, 'JI-M-CWLT-0002', 'JI Chain Wallet(Esiposs)', 2, '780.0000', '780.0000', '1.0000', 'no_image.png', 2, 44, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'ji-chain-walletesiposs', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (300, 'JI-M-CWLT-0003', 'JI Chain Wallet(Esiposs)-20%', 2, '890.0000', '890.0000', '1.0000', 'no_image.png', 2, 44, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'ji-chain-walletesiposs-20', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (301, 'JI-M-CWLT-0004', 'JI Chain Wallet(Esiposs)', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 44, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'ji-chain-walletesiposs', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (319, 'JI-M-IB-0002-53', 'JI Imoported Belt-Cobra', 2, '1650.0000', '1650.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt-cobra', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (320, 'JI-M-IB-0003-53', 'JI Imoported Belt-Cobra', 2, '1650.0000', '1650.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt-cobra', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (321, 'JI-M-ILB-0102-66', 'JI Italian L Belt-Lineing', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-lineing', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (322, 'JI-M-ILB-0104-53', 'JI Italian L Belt-Cobra', 2, '1550.0000', '1550.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-cobra', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (323, 'JI-M-IB-0004', 'JI Imoported Belt', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (324, 'JI-M-IB-0005', 'JI Imoported Belt', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (325, 'JI-M-IB-0006', 'JI Imoported Belt', 2, '950.0000', '950.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (326, 'JI-M-IB-0007', 'JI Imoported Belt', 2, '750.0000', '750.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (327, 'JI-M-IB-0009', 'JI Imoported Belt', 2, '350.0000', '350.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (328, 'JI-M-IB-0010', 'JI Imoported Belt', 2, '250.0000', '250.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (329, 'JI-W-WILBT-0014', 'JI Italian L Belt', 2, '290.0000', '680.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (330, 'JI-W-WILBT-0015', 'JI Italian L Belt', 2, '290.0000', '790.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (331, 'JI-W-WLBLT-0016', 'JI Italian L Belt', 2, '290.0000', '790.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '11.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (332, 'JI-W-WLBLT-0017', 'JI Italian L Belt', 2, '290.0000', '850.0000', '1.0000', 'no_image.png', 3, 30, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (333, 'LS-M-SLP-001=002=003', 'LS Slipper', 2, '635.0000', '635.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', '26.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 3, 'ls-slipper', NULL, '0.0000', 6403, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (334, 'LS-M-SLP-004=010', 'LS  Slipper', 2, '720.0000', '720.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', '49.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 3, 'ls-slipper', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (335, 'LS-M-SLP-005=006', 'LS Slipper', 2, '593.0000', '593.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', '40.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 3, 'ls-slipper', NULL, '0.0000', 6403, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (336, 'JI-M-TS-0001', 'JI T Shirt', 2, '682.5000', '682.5000', '1.0000', 'no_image.png', 2, 46, '', '', '', '', '', '', '20.0000', 3, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-t-shirt', NULL, '0.0000', 62159090, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (337, 'JI-M-OB-000005-1', 'JI Office Bag-Black', 2, '1450.0000', '3850.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-office-bag-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (338, 'JI-M-OB-000005-4', 'JI Office Bag-Tan', 2, '3850.0000', '3850.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-office-bag-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (339, 'JI-M-OB-000005-3', 'JI Office Bag-Brown', 2, '3850.0000', '3850.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-office-bag-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (340, 'G7-M-KW-0001', 'G7 Wallet', 2, '350.0000', '350.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '35.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (341, 'G7-M-KW-0002', 'G7 Key Wallet', 2, '380.0000', '380.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '11.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-key-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (342, 'G7-M-KW-0003', 'G7 Key Wallet', 2, '400.0000', '400.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-m-kw-0003', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (343, 'G7-BSB-001', 'BLACK SMALL BOX', 2, '13.0000', '13.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4000.0000', 4, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'black-small-box', NULL, '0.0000', 4819, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (344, 'G7-BBB-001', 'BLACK BIG BOX', 2, '20.0000', '20.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2002.0000', 4, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'black-big-box', NULL, '0.0000', 4819, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (345, 'G7-RBB-001', 'RED BIG BOX', 2, '38.0000', '38.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1000.0000', 4, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'red-big-box', NULL, '0.0000', 4819, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (346, 'G7-M-LWLT-0038-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (347, 'G7-M-LWLT-0038-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (348, 'G7-M-LWLT-0038-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (349, 'G7-M-LWLT-0039-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (350, 'G7-M-LWLT-0039-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (351, 'G7-M-LWLT-0039-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (352, 'G7-M-LWLT-0040-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (353, 'G7-M-LWLT-0040-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (354, 'G7-M-LWLT-0040-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (355, 'G7-M-LWLT-0041-3', 'G7 Leather Wallet-BROWN', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '41.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (356, 'G7-M-LWLT-0042-3', 'G7 Leather Wallet-BROWN', 2, '690.0000', '690.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '20.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (357, 'G7-M-LWLT-0042-1', 'G7 Leather Wallet-BLACK', 2, '690.0000', '690.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '21.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (358, 'G7-M-LWLT-0043-1', 'G7 Leather Wallet-BLACK', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (359, 'G7-M-LWLT-0043-3', 'G7 Leather Wallet-BROWN', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '19.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (360, 'G7-M-LWLT-0043-4', 'G7 Leather Wallet-TAN', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '21.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (361, 'G7-M-LWLT-0044-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (362, 'G7-M-LWLT-0044-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (363, 'G7-W-LB-0014', 'G7 Ladies Bag', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (364, 'G7-W-LB-0015', 'G7 Ladies Bag', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (365, 'G7-W-LB-0016', 'G7 Ladies Bag', 2, '1890.0000', '1890.0000', '0.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (366, 'G7-W-LB-0017', 'G7 Ladies Bag', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (367, 'G7-W-LB-0018', 'G7 Ladies Bag', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (369, 'G7-W-LB-0019', 'G7 Ladies Bag', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (370, 'G7-W-LB-0020', 'G7 Ladies Bag', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (371, 'G7-W-LB-0021', 'G7 Ladies Bag', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (372, 'G7-W-LB-0022', 'G7 Ladies Bag', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (373, 'G7-W-LB-0023', 'G7 Ladies Bag', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (374, 'G7-W-LB-0024', 'G7 Ladies Bag', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (375, 'G7-W-LB-0025', 'G7 Ladies Bag', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (376, 'G7-W-LB-0026', 'G7 Ladies Bag', 2, '1880.0000', '1880.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (377, 'G7-W-LB-0027', 'G7 Ladies Bag', 2, '890.0000', '890.0000', '0.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (378, 'G7-W-LB-0028', 'G7 Ladies Bag', 2, '1950.0000', '1950.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (379, 'G7-W-LB-0029', 'G7 Ladies Bag', 2, '2290.0000', '2290.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (380, 'G7-W-LB-0030', 'G7 Ladies Bag', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (381, 'G7-W-LB-0031', 'G7 Ladies Bag', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (382, 'G7-W-LB-0032', 'G7 Ladies Bag', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (384, 'G7-W-LB-0034', 'G7 Ladies Bag', 2, '1790.0000', '1790.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (385, 'G7-W-LB-0035', 'G7 Ladies Bag', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (386, 'G7-W-LB-0036', 'G7 Ladies Bag', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '11.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (387, 'G7-W-LB-0037', 'G7 Ladies Bag', 2, '2390.0000', '2390.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (388, 'G7-W-LB-0038', 'G7 Ladies Bag', 2, '1260.0000', '1260.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (389, 'G7-W-LB-0039', 'G7 Ladies Bag', 2, '1550.0000', '1550.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (390, 'G7-W-LB-0040', 'G7 Ladies Bag', 2, '1170.0000', '1170.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (391, 'JI-M-ILB-103', 'JI Italian L Belt', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (392, 'G7-W-LB-0041', 'G7 Ladies Bag', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (393, 'G7-W-LB-0042', 'G7 Ladies Bag', 2, '870.0000', '870.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (394, 'G7-W-LB-0043', 'G7 Ladies Bag', 2, '1890.0000', '1890.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (395, 'G7-W-LB-0044', 'G7 Ladies Bag', 2, '1480.0000', '1480.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (396, 'G7-W-LB-0045', 'G7 Ladies Bag', 2, '1590.0000', '1590.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (397, 'G7-W-LB-0046', 'G7 Ladies Bag', 2, '1690.0000', '1690.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (398, 'G7-W-LB-0047', 'G7 Ladies Bag', 2, '1790.0000', '1790.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (399, 'G7-W-LB-0048', 'G7 Ladies Bag', 2, '1490.0000', '1490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (400, 'G7-W-LB-0049', 'G7 Ladies Bag', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (401, 'G7-M-SLP-0006-01', 'G7 Slipper-black=11', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', '34.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-slipper-black11', NULL, '0.0000', 6403, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown=8', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', '34.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-slipper-brown11', NULL, '0.0000', 6403, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (403, 'G7-M-SLP-0007-01', 'G7 Slipper-black=07', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', '36.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-slipper-black11', NULL, '0.0000', 6403, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (404, 'G7-M-SLP-0007-03', 'G7 Slipper-brown=9', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', '36.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-slipper-brown9', NULL, '0.0000', 6403, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (405, 'G7-M-OB-0005', 'G7  Office Bag', 2, '3800.0000', '3800.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-office-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (406, 'G7-M-OB-0006', 'G7 Office Bag', 2, '4350.0000', '4350.0000', '1.0000', 'no_image.png', 2, 12, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-office-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (407, 'JI-M-CWLT-0005', 'JI Chain Wallet(Esiposs)', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-chain-walletesiposs', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (408, 'JI-M-IBLT-104', 'JI Italian L Belt(Dimond Bkl)', 2, '530.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-beltdimond-bkl', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (409, 'G7-M-LWLT-0045-4', 'G7 Leather Wallet-TAN', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '22.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (410, 'G7-M-LWLT-0045-1', 'G7 Leather Wallet-BLACK', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '23.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (411, 'G7-M-LWLT-0045-3', 'G7 Leather Wallet-BROWN', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '17.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (412, 'G7-M-LWLT-0046-3', 'G7 Leather Wallet-BROWN', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (413, 'G7-M-LWLT-0046-4', 'G7 Leather Wallet-Tan', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '13.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (414, 'G7-M-LWLT-000246', 'G7 Leather Wallet-BLACK', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '21.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (415, 'G7-M-LWLT-0046-6', 'G7 Leather Wallet-Green', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '17.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-green', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (416, 'G7-M-LWLT-0046-5', 'G7 Leather Wallet-Blue', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '16.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-blue', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (417, 'G7-M-LWLT-0046-1', 'G7 Leather Wallet-BLACK', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '21.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (418, 'G7-M-LWLT-0047-4', 'G7 Leather Wallet-TAN', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (419, 'G7-M-LWLT-0047-1', 'G7 Leather Wallet-BLACK', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (420, 'G7-M-LWLT-0047-3', 'G7 Leather Wallet-BROWN', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (421, 'G7-M-LWLT-0048-3', 'G7 Leather Wallet-BROWN', 2, '1550.0000', '1550.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '38.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (422, 'G7-M-LWLT-0048-1', 'G7 Leather Wallet-BLACK', 2, '1550.0000', '1550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '38.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (423, 'G7-M-LWLT-0048', 'G7 Leather Wallet', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '40.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (424, 'G7-M-PWLT-0003', 'G7 Passport Wallet', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', '30.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '295.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (425, 'G7-M-PWLT-0004', 'G7 Passport Wallet', 2, '1590.0000', '1590.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '295.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (426, 'G7-M-LWLT-0044-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (427, 'G7-M-LWLT-0049-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (428, 'G7-M-LWLT-0049-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '48.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (429, 'G7-M-LWLT-0050-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (430, 'G7-M-LWLT-0050-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (431, 'G7-M-LWLT-0049-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (432, 'G7-M-LWLT-0051-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (433, 'G7-M-LWLT-0051-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (434, 'G7-M-LWLT-0051-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (435, 'JI-M-IB-0011', 'JI Imoported Belt', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (436, 'JI-M-IB-0012', 'JI Imoported Belt', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (437, 'JI-M-IB-0013', 'JI Imoported Belt', 2, '1560.0000', '1560.0000', '1.0000', 'no_image.png', 2, 29, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-imoported-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (438, 'G7-M-LWLT-0050-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (439, 'JI-M-IBLT-0104-48', 'JI Italian L Belt-IMPORTED Metro', 2, '390.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-l-belt-imported-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (440, 'JI-M-IBLT-0105-23', 'JI Italian L Belt-MAGIC', 2, '365.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (441, 'JI-M-IBLT-0106-24', 'JI Italian L Belt-Palmila', 2, '390.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (442, 'G7-M-LWLT-0052-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (443, 'G7-M-LWLT-0052-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (444, 'G7-M-LWLT-0052-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (445, 'c-W-WLB-0002', 'C  Ladies Bag ', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '560.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'c-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (446, 'c-W-WLB-0003', 'C  Ladies Bag ', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '560.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'c-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (447, 'JI-M-IBLT-0107-29', 'JI Italian L Belt-metro', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (448, 'JI-M-IBLT-0108-19', 'JI Italian L Belt-evolution', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-evolution', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (449, 'JI-M-IBLT-0109-48', 'JI Italian L Belt-IMPORTED', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (450, 'JI-M-IBLT-0110-48', 'JI Italian L Belt-IMPORTED', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (451, 'JI-M-IBLT-0111-20', 'JI Italian L Belt-sunshine', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-sunshine', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (452, 'G7-M-LWLT-0053-4', 'G7 Leather Wallet-TAN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (453, 'G7-M-LWLT-0053-3', 'G7 Leather Wallet-BROWN', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (454, 'G7-M-LWLT-0053-1', 'G7 Leather Wallet-BLACK', 2, '840.0000', '840.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (455, 'JI-M-IBLT-0112-42', 'JI Italian L Belt-Tango', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-tango', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (456, 'JI-M-IBLT-0114-24', 'JI Italian L Belt-Palmila', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (457, 'JI-M-IBLT-0114-19', 'JI Italian L Belt-Evolution', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-evolution', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (458, 'JI-M-IBLT-0112-26', 'JI Italian L Belt-Hony', 2, '1140.0000', '1140.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (459, 'JI-M-IBLT-0115-23', 'JI Italian L Belt-MAGIC', 2, '1240.0000', '1240.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (460, 'JI-M-IBLT-0115-29', 'JI Italian L Belt-Metro', 2, '1240.0000', '1240.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-l-belt-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (461, 'JI-M-IBLT-0115-41', 'JI Italian L Belt-Lce', 2, '1240.0000', '1240.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-lce', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (462, 'JI-M-IBLT-0115-24', 'JI Italian L Belt-Palmila', 2, '1240.0000', '1240.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (463, 'JI-M-IBLT-0116-19', 'JI Italian L Belt-Evolution', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-evolution', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (464, 'JI-M-IBLT-0116-48', 'JI Italian L Belt-IMPORTED', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (465, 'JI-M-ISM-0005-42', 'JI Italian Steel Bkl-Tango', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-tango', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (466, 'JI-M-ISM-0005-49', 'JI Italian Steel Bkl-IMP Magic', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-imp-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (467, 'JI-M-ISM-0006-21', 'JI Italian Steel Bkl-Envy Tan', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-steel-bkl-envy-tan', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (468, 'JI-M-ISM-0007-26', 'JI Italian Steel Bkl-Hony', 2, '1850.0000', '1850.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (469, 'JI-M-IBLT-0117-42', 'JI Italian L Belt-Tango', 2, '1490.0000', '1490.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-tango', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (470, 'JI-M-IBLT-0117-29', 'JI Italian L Belt-Metro', 2, '1490.0000', '1490.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (471, 'JI-M-IBLT-0118-42', 'JI Italian L Belt-Tango', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-tango', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (472, 'JI-M-IBLT-0118-28', 'JI Italian L Belt-Galan', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-galan', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (473, 'JI-M-IBLT-0119-48', 'JI Italian L Belt-IMPORTED', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '24.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (474, 'JI-M-IBLT-0120-42', 'JI Italian L Belt-Tango', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-tango', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (475, 'JI-M-IBLT-0120-29', 'JI Italian L Belt-Metro', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (476, 'JI-M-IBLT-0121-23', 'JI Italian L Belt-MAGIC', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (477, 'JI-M-IBLT-0121-41', 'JI Italian L Belt-Lce', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-lce', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (478, 'JI-M-IBLT-0122-49', 'JI Italian L Belt-IMPORTED Magic', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '27.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (479, 'JI-M-IBLT-0123-49', 'JI Italian L Belt-IMPORTED Magic', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '27.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (480, 'JI-M-LB-0010', 'JI Lock Belt', 2, '340.0000', '1290.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-lock-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (481, 'JI-M-LB-0011', 'JI Lock Belt', 2, '340.0000', '1290.0000', '0.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (482, 'JI-M-LB-0012-31', 'JI Lock Belt-IMP Metro', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-imp-metro', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (483, 'JI-M-LB-0013-31', 'JI Lock Belt-IMP Metro', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (484, 'JI-M-LB-0014-31', 'JI Lock Belt-IMP Metro', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-imp-metro', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (485, 'JI-M-LB-0015-31', 'JI Lock Belt-IMP Metro', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-imp-metro', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (486, 'JI-M-LB-0016-31', 'JI Lock Belt-IMP Metro', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-imp-metro', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (487, 'JI-M-LB-0017-31', 'JI Lock Belt-IMP Metro', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-imp-metro', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (488, 'JI-M-LB-0018-31', 'JI Lock Belt-IMP Metro', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-imp-metro', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (489, 'JI-M-IBLT-0124-24', 'JI Italian L Belt-Palmila', 2, '390.0000', '1380.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '27.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (490, 'JI-M-PU-0001', 'JI PU Belt', 2, '145.0000', '390.0000', '1.0000', 'no_image.png', 2, 40, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-pu-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (491, 'JI-M-PU-0002', 'JI PU Belt', 2, '145.0000', '390.0000', '1.0000', 'no_image.png', 2, 40, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-pu-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (492, 'JI-M-PU-0003', 'JI PU Belt', 2, '145.0000', '390.0000', '1.0000', 'no_image.png', 2, 40, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-pu-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (493, 'JI-M-PU-0004', 'JI PU Belt', 2, '145.0000', '390.0000', '1.0000', 'no_image.png', 2, 40, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-pu-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (494, 'JI-M-IBLT-0125-24', 'JI Italian L Belt-Palmila', 2, '385.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-palmilla', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (495, 'JI-M-IBLT-0125-26', 'JI Italian L Belt-Hony', 2, '365.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (496, 'JI-M-IBLT-0125-29', 'JI Italian L Belt-Metro', 2, '365.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (497, 'G7-M-LWLT-0054-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (498, 'G7-M-LWLT-0055-61', 'G7 Leather Wallet-GIL', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 15, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '401.2000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-gil', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (500, 'JI-M-IBLT-0036-29', 'JI Italian L Belt- Metro', 2, '340.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-metro', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (501, 'JI-M-IBLT-0038-17', 'JI Italian L Belt-Hony Met', 2, '340.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-hony-met', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (502, 'JI-M-IBLT-0038-42', 'JI Italian L Belt-Tango', 2, '340.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-tango', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (503, 'JI-M-LBLT-0001', 'JI Leather Belt', 2, '280.0000', '850.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (504, 'G7-M-LWLT-0056', 'G7 Zebru Wallet-Combo', 2, '450.0000', '1500.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-zebru-wallet-combo', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (505, 'G7-M-LWLT-0057', 'G7 Zebru Wallet', 2, '225.0000', '850.0000', '1.0000', 'no_image.png', 2, 4, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-zebru-wallet', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (506, 'JI-M-IBLT-0113-', 'JI Italian L Belt', 2, '401.2000', '401.2000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (507, 'G7-W-LB-0033', 'G7 Ladies Bag', 2, '1580.0000', '1580.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (508, 'JI-M-ILB-0012-36', 'JI Indian L Belt-Bali', 2, '21.0000', '520.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (509, 'JI-M-ILB-0013-36', 'Ji Leather Belt-Bali', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (510, 'JI-M-ILB-0014-36', 'JI Leather Belt-Bali', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (511, 'JI-M-ILB-0015-36', 'JI Leather Belt-Bali', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (512, 'JI-M-ILB-0016-36', 'JI Leathe Belt-Bali', 2, '215.0000', '600.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 1, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leathe-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (513, 'JI-M-ILB-0016-27', 'JI Leather Belt-points', 2, '215.0000', '600.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-points', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (514, 'JI-M-ILB-0016-26', 'JI Leather Belt-Honey', 2, '215.0000', '600.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-honey', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (515, 'JI-M-ILB-0017-41', 'JI Leather Belt-Lce', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-lce', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (516, 'JI-M-ILB-0018-41', 'JI Leather Belt-Lce', 2, '215.0000', '540.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-lce', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (517, 'JI-M-ILB-0019-41', 'JI Leather Belt-Bali', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (518, 'JI-M-ILB-0020-41', 'JI Leather Belt-Lce', 2, '215.0000', '540.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-lce', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (519, 'G7-M-CLG-0001', 'G7 College Bag', 2, '1350.0000', '1350.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-college-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (520, 'G7-W-WLB-0014', 'G7 Ladies Bag', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (521, 'G7-W-WLB-0015', 'G7 Ladies Bag', 2, '1790.0000', '1790.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (522, 'G7-W-WLB-0016', 'G7 Ladies Bag', 2, '1890.0000', '1890.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (523, 'G7-W-WLB-0017', 'G7 Ladies Bag', 2, '1350.0000', '1350.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (524, 'G7-W-WLB-0018', 'G7 Ladies Bag', 2, '2150.0000', '2150.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (525, 'G7-W-WLB-0019', 'G7 Ladies Bag', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (526, 'G7-M-SB-000004', 'G7 Side Bag', 2, '690.0000', '690.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (527, 'G7-M-SB-000005', 'G7 Side Bag', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (528, 'G7-M-BK-0002', 'G7 Back Pack', 2, '1380.0000', '1380.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (529, 'G7-M-BK-0003', 'G7 Back Pack', 2, '1590.0000', '1590.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (530, 'G7-M-BK-0004', 'G7 Back Pack', 2, '1390.0000', '1390.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (531, 'G7-M-BK-0005', 'G7 Back Pack', 2, '1390.0000', '1390.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (532, 'G7-M-BK-0006', 'G7 Back Pack', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (533, 'G7-M-TB-0003', 'G7 Travelling Bag', 2, '2490.0000', '2490.0000', '1.0000', 'no_image.png', 2, 6, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3304.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-travelling-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (534, 'G7-M-TB-0004', 'G7 Travelling Bag', 2, '2190.0000', '2190.0000', '1.0000', 'no_image.png', 2, 6, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3304.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-travelling-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (535, 'G7-M-TB-0005', 'G7 Travelling Bag', 2, '1890.0000', '1890.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3304.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-travelling-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (537, 'G7-M-BLTP-0001', 'G7 Belt Pauch', 2, '490.0000', '490.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-belt-pauch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (538, 'G7-M-BLTP-0002', 'G7 Belt Pauch', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '13.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-belt-pauch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (539, 'G7-M-BLTP-0003', 'G7 Belt Pauch', 2, '440.0000', '440.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-belt-pauch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (540, 'G7-M-BK-0007', 'G7 Back Pack', 2, '1070.0000', '1070.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (541, 'G7-M-BLTP-0004', 'G7 Belt Pauch', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-belt-pauch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (542, 'G7-M-BK-0008', 'G7 Back Pack', 2, '1490.0000', '1490.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (543, 'G7-M-BK-0009', 'G7 Back Pack', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (544, 'G7-W-WLB-0020', 'G7 Ladies Bag', 2, '1690.0000', '1690.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (545, 'G7-M-SB-000006', 'G7 Side Bag', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (546, 'G7-M-SB-000007', 'G7 Side Bag', 2, '1490.0000', '1490.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (547, 'G7-M-SB-000008', 'G7 Side Bag', 2, '1390.0000', '1390.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (548, 'G7-M-BLTP-0005', 'G7 Belt Pauch', 2, '590.0000', '590.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-belt-pauch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (549, 'G7-M-BK-0010', 'G7 Back Pack', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (550, 'G7-M-BK-0011', 'G7 Back Pack', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '16.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (551, 'G7-W-WLB-0021', 'G7 Ladies Bag', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (552, 'G7-W-WLB-0022', 'G7 Ladies Bag', 2, '1950.0000', '1950.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (553, 'G7-W-WLB-0023', 'G7 Ladies Bag', 2, '1650.0000', '1650.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (554, 'G7-W-WLB-0024', 'G7 Ladies Bag', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (555, 'G7-W-WLB-0025', 'G7 Ladies Bag', 2, '2190.0000', '2190.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (556, 'G7-M-BK-0012', 'G7 Back Pack', 2, '1490.0000', '1490.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (557, 'G7-W-WLB-0026', 'G7 Ladies Bag', 2, '1590.0000', '1590.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (558, 'G7-W-WLB-0027', 'G7 Ladies Bag', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (559, 'G7-W-WLB-0028', 'G7 Ladies Bag', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (560, 'G7-W-WLB-0029', 'G7 Ladies Bag', 2, '1390.0000', '1390.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (561, 'G7-W-WLB-0030', 'G7 Ladies Bag', 2, '2650.0000', '2650.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (562, 'G7-W-WLB-0031', 'G7 Ladies Bag', 2, '2090.0000', '2090.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (563, 'G7-W-WLB-0032', 'G7 Ladies Bag', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (564, 'G7-M-SB-000009', 'G7 Side Bag', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (565, 'G7-W-WC-0006', 'G7 Calch', 2, '1390.0000', '1390.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (566, 'G7-W-WC-0007', 'G7 Calch', 2, '1750.0000', '1750.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (567, 'G7-W-WC-0008', 'G7 Calch', 2, '1350.0000', '1350.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (568, 'G7-W-WC-0009', 'G7 Calch', 2, '1650.0000', '1650.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (569, 'G7-W-WC-0010', 'G7 Calch', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (570, 'G7-M-BK-0013', 'G7 Back Pack', 2, '590.0000', '590.0000', '1.0000', 'no_image.png', 9, 7, '', '', '', '', '', '', '22.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (571, 'G7-M-BK-0014', 'G7 Back Pack', 2, '490.0000', '490.0000', '1.0000', 'no_image.png', 9, 7, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (572, 'G7-W-WLB-0033', 'G7 Ladies Bag', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '19.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (573, 'G7-W-WLB-0034', 'G7 Ladies Bag', 2, '950.0000', '950.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (574, 'G7-W-WLB-0035', 'G7 Ladies Bag', 2, '1290.0000', '1290.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (575, 'G7-W-WLB-0036', 'G7 Ladies Bag', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '25.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (576, 'G7-W-WLB-0037', 'G7 Ladies Bag', 2, '450.0000', '450.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '22.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (577, 'G7-W-WLB-0038', 'G7 Ladies Bag', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '23.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (578, 'G7-W-WLB-0039', 'G7 Ladies Bag', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '11.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (579, 'G7-W-WLB-0040', 'G7 Ladies Bag', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (580, 'G7-W-WLB-0041', 'G7 Ladies Bag', 2, '890.0000', '890.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (581, 'G7-M-BK-0015', 'G7 Back Pack', 2, '1090.0000', '1090.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (582, 'G7-M-BK-0016', 'G7 Back Pack', 2, '990.0000', '990.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (583, 'G7-M-BK-0017', 'G7 Back Pack', 2, '890.0000', '890.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (584, 'G7-M-BK-0018', 'G7 Back Pack', 2, '790.0000', '790.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (585, 'G7-W-WLB-0042', 'G7 Ladies Bag', 2, '490.0000', '490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (586, 'G7-M-LWLT-0058', 'G7 Gil Wallet-Combo', 2, '1000.0000', '1900.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-gil-wallet-combo', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (587, 'JI-M-LB-0019', 'JI Lock Belt', 2, '250.0000', '990.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '30.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (588, 'JI-M-LB-0020', 'JI Lock Belt', 2, '300.0000', '1090.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (589, 'G7-W-LB-0045-1', 'G7 Ladies Bag', 2, '490.0000', '490.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (590, 'G7-W-LB-0041-1', 'G7 Ladies Bag', 2, '1950.0000', '1950.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-bag', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (591, 'G7-W-LB-0043-1', 'G7 Ladies Bag', 2, '1650.0000', '1650.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-bag', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (592, 'G7-W-LB-0050', 'G7 Ladies Bag', 2, '3000.0000', '4300.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (593, 'G7-W-LB-0042-1', 'G7 Ladies Bag', 2, '1750.0000', '2250.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (594, 'G7-W-LB-0044-1', 'G7 Ladies Bag', 2, '2250.0000', '2750.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-bag', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (595, 'G7-W-BK-0001', 'WATERPROOF BACKPACK', 2, '590.0000', '1490.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'waterproof-backpack', NULL, '0.0000', 42033120, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (596, 'G7-W-BK-0002', 'WATERPROOF BACKPACK', 2, '531.0000', '1290.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'waterproof-backpack', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (597, 'G7-W-BK-0003', 'WATERPROOF BACKPACK', 2, '696.2000', '2490.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'waterproof-backpack', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (598, 'G7-W-BK-0004', 'WATERPROOF BACKPACK', 2, '531.0000', '1590.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'waterproof-backpack', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (599, 'G7-W-BK-0006', 'WATERPROOF BACKPACK', 2, '826.0000', '2490.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'waterproof-backpack', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (600, 'G7-W-BK-0007', 'WATERPROOF BACKPACK', 2, '531.0000', '1390.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'waterproof-backpack', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (601, 'G7-W-BK-0008', 'WATERPROOF BACKPACK', 2, '885.0000', '2380.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'waterproof-backpack', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (602, 'G7-M-LB-0001', 'LEATHER BRIEFCASE', 2, '590.0000', '1990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-briefcase', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (603, 'G7-M-LB-0002', 'LEATHER BRIEFCASE', 2, '590.0000', '2500.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-briefcase', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (604, 'G7-M-LPH-0001', 'LEATHER LAPTOP HANDBAG', 2, '590.0000', '1990.0000', '1.0000', 'no_image.png', 2, 37, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-laptop-handbag', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (605, 'G7-W-LBK-0001', 'LEATHER BACKPACK', 2, '472.0000', '1490.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-backpack', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (606, 'G7-W-LBK-0002', 'LEATHER BACKPACK', 2, '590.0000', '1800.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-backpack', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (607, 'G7-W-LSB-0001', 'LEATHER SHOULDER BAG', 2, '472.0000', '1790.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-shoulder-bag', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (608, 'G7-W-LSB-0002', 'LEATHER SHOULDER BAG', 2, '590.0000', '1990.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-shoulder-bag', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (609, 'G7-W-LSB-0003', 'LEATHER SHOULDER BAG', 2, '472.0000', '1990.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-shoulder-bag', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (610, 'G7-W-LSB-0004', 'LEATHER SHOULDER BAG', 2, '472.0000', '1590.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-shoulder-bag', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (611, 'G7-W-LSB-0005', 'LEATHER SHOULDER BAG', 2, '472.0000', '1590.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'leather-shoulder-bag', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (612, 'G7-W-PLSB-0001', 'PU LADIES SHOULDER BAG', 2, '590.0000', '1990.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'pu-ladies-shoulder-bag', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (613, 'G7-W-PLSB-0002', 'PU LADIES SHOULDER BAG', 2, '590.0000', '1890.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'pu-ladies-shoulder-bag', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (614, 'BU-2', 'Buckle-2', 2, '11.7500', '11.7500', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'buckle-2', NULL, '0.0000', 8308, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (615, 'G7-LAPTOP-BAG', 'LAPTOP BAG', 2, '148.0000', '148.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '30.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'laptop-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (616, 'G7-WALLWT-1', 'WALLET', 2, '15.3300', '15.3300', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5340.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (617, 'Ji-bkl-0001', 'Belt with buckle', 2, '56.8300', '56.8300', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2328.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-bkl-0001', NULL, '0.0000', 4203, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (618, 'G7-Gift-Set-Box', 'Gift Set Box', 2, '25.0000', '25.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '975.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'gift-set-box', NULL, '0.0000', 4819, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (619, 'G7-WALLET-BOX', 'WALLET BOX', 2, '12.0000', '12.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '400.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'wallet-box', NULL, '0.0000', 4819, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (620, 'G7-BELT-BOX', 'BELT BOX', 2, '15.0000', '15.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '143.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'belt-box', NULL, '0.0000', 84425020, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (621, 'G7-PASSPORT-BOX', 'PASSPORT BOX', 2, '18.0000', '18.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '400.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'passport-box', NULL, '0.0000', 4819, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (622, 'Inc5-W-Chhapl-0001', 'Inc.5 Chhapl', 2, '1990.0000', '1990.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '23.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'inc5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (623, 'Inc5-W-Chhapl-0002', 'Inc.5 Chhapl', 2, '1890.0000', '1890.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '13.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inch-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (624, 'Inc5-W-Chhapl-0003', 'Inc.5 Chhapl', 2, '2190.0000', '2190.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (625, 'Inc5-W-Chhapl-0004', 'Inc.5 Chhapl', 2, '2490.0000', '2490.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (626, 'Inc5-W-Chhapl-0005', 'Inc.5 Chhapl', 2, '2290.0000', '2290.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (627, 'Inc5-W-Chhapl-0006', 'Inc.5 Chhapl', 2, '2390.0000', '2390.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (628, 'Inc5-W-Chhapl-0007', 'Inc.5 Chhapl', 2, '550.0000', '1790.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (629, 'Inc5-W-Chhapl-0008', 'Inc.5 Chhapl', 2, '550.0000', '1995.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (630, 'Inc5-W-Chhapl-0009', 'Inc.5 Chhapl', 2, '550.0000', '2690.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (631, 'Inc5-W-Chhapl-0010', 'Inc.5 Chhapl', 2, '550.0000', '2990.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (632, 'Inc5-W-Chhapl-0011', 'Inc.5 Chhapl', 2, '550.0000', '1690.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (633, 'Inc5-W-Chhapl-0012', 'Inc.5 Chhapl', 2, '550.0000', '1590.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (634, 'Inc5-W-Chhapl-0013', 'Inc.5 Chhapl', 2, '550.0000', '3890.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (635, 'Inc5-W-Chhapl-0014', 'Inc.5 Chhapl', 2, '550.0000', '2090.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (636, 'Inc5-W-Chhapl-0015', 'Inc.5 Chhapl', 2, '550.0000', '2590.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (637, 'Inc5-W-Chhapl-0016', 'Inc.5 Chhapl', 2, '550.0000', '650.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (638, 'Inc5-W-Chhapl-0017', 'Inc.5 Chhapl', 2, '550.0000', '1600.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'inc-5-chhapl', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (639, 'JI-M-ISM-0008-66', 'JI Italian Steel Bkl-Nova Pull', 2, '450.0000', '1190.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-nova-pull', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (640, 'JI-M-ISM-0009-26', 'JI Italian Steel Bkl-Hony', 2, '550.0000', '1550.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (641, 'JI-M-ISM-0009-24', 'JI Italian Steel Bkl-Palmila', 2, '550.0000', '1550.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (642, 'JI-M-ISM-0009-39', 'JI Italian Steel Bkl-Webs', 2, '550.0000', '1550.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-webs', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (643, 'JI-M-ISM-0010-42', 'JI Italian Steel Bkl-Tango', 2, '500.0000', '1500.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-tango', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (644, 'JI-M-ISM-0010-17', 'JI Italian Steel Bkl-Hony Met', 2, '500.0000', '1500.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-hony-met', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (645, 'JI-M-ISM-0011-26', 'JI Italian Steel Bkl-Hony ', 2, '550.0000', '1550.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (646, 'JI-M-ISM-0011-24', 'JI Italian Steel Bkl-Palmila', 2, '550.0000', '1550.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '11.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (647, 'JI-M-ISM-0011-39', 'JI Italian Steel Bkl-Webs', 2, '550.0000', '1550.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-webs', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (648, 'JI-M-ISM-0012-23', 'JI Italian Steel Bkl-Magic', 2, '450.0000', '1350.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (649, 'JI-M-ISM-0013-30', 'JI Italian Steel Bkl-IMP Palmila', 2, '450.0000', '1190.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-imp-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (650, 'JI-M-ISM-0014-24', 'JI Italian Steel Bkl-Palmila', 2, '550.0000', '1350.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (651, 'JI-M-ISM-0014-30', 'JI Italian Steel Bkl-IMP Palmila', 2, '550.0000', '1350.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-imp-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (652, 'JI-M-ISM-0015-49', 'JI Italian Steel Bkl-IMP Magic', 2, '450.0000', '1350.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-imp-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (653, 'JI-M-ISM-0016-24', 'JI Italian Steel Bkl-Palmila', 2, '550.0000', '1150.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (654, 'JI-M-ISM-0017-31', 'JI Italian Steel Bkl-Imp Metro', 2, '550.0000', '1350.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-imp-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (655, 'JI-M-ISM-0018-31', 'JI Italian Steel Bkl-Imp Metro', 2, '550.0000', '1350.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-steel', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (656, 'JI-M-IBLT-0120-25', 'JI Italian L Belt-Sunshine', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-sunshine', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (657, 'JI-M-IBLT-0120-17', 'JI Italian L Belt-Hony Met', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-hony-met', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (658, 'JI-M-IBLT-0120-24', 'JI Italian L Belt-Palmila', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (659, 'JI-M-IBLT-0120-31', 'JI Italian L Belt-IMPORTED Metro', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (660, 'JI-M-IBLT-0002-31', 'JI Italian L Belt-IMPORTED Metro', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported-metro', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (661, 'JI-M-IBLT-0002-23', 'JI Italian L Belt-MAGIC', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (662, 'JI-M-IBLT-0002-17', 'JI Italian L Belt-Hony Met', 2, '1150.0000', '1150.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-hony-met', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (663, 'JI-M-IBLT-0037-26', 'JI Italian L Belt-Hony', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-italian-l-belt-hony', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (664, 'JI-M-IBLT-0037-24', 'JI Italian L Belt-Palmila', 2, '1280.0000', '1280.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-italian-l-belt-palmila', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (666, 'JI-M-ILB-103-19', 'JI Italian L Belt-Evolution', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-evolution', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (667, 'JI-M-ILB-103-26', 'JI Italian L Belt-Hony', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (668, 'JI-M-IBLT-0116-24', 'JI Italian L Belt-Palmila', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (669, 'JI-M-IBLT-0116-23', 'JI Italian L Belt-MAGIC', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (670, 'JI-M-IBLT-0005-24', 'JI Italian L Belt-Palmila', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ji-italian-l-belt-palmila', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (671, 'JI-M-IBLT-0007-26', 'JI Italian L Belt-Hony', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ji-italian-l-belt-hony', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (672, 'JI-M-IBLT-0039-25', 'JI Italian L Belt-Sunshin', 2, '1230.0000', '1230.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-sunshin', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (673, 'JI-M-IBLT-0124-26', 'JI Italian L Belt-Hony', 2, '390.0000', '1380.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-l-belt-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (674, 'JI-M-IBLT-0118-24', 'JI Italian L Belt-Palmila', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (675, 'JI-M-ILB-0014', 'JI Indian L Belt', 2, '520.0000', '560.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '41.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (676, 'JI-M-ILB-0021-36', 'JI Leather Belt-Bali', 2, '215.0000', '520.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (677, 'JI-M-ILB-0022', 'JI Leather Belt', 2, '215.0000', '520.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (678, 'JI-M-ILB-0023', 'JI Indian Leather Belt', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (679, 'JI-M-ILB-0024', 'JI Leather Belt', 2, '215.0000', '500.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-leather-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (680, 'JI-M-ILB-0025', 'JI Indian Leather Belt', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '24.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (681, 'JI-M-IBLT-0010-31', 'JI Italian L Belt-IMPORTED Metro', 2, '1250.0000', '1250.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (682, 'JI-M-IBLT-0021-23', 'JI Italian L Belt-MAGIC', 2, '1050.0000', '1050.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (683, 'JI-M-LB-0010-23', 'JI Lock Belt-Magic', 2, '340.0000', '1290.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (684, 'JI-M-LB-0015-23', 'JI Lock Belt-Magic', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-magic', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (685, 'JI-M-LB-0016-19', 'JI Lock Belt-Evolution', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-evolution', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (686, 'JI-M-LB-0015-19', 'JI Lock Belt-Evolution', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-lock-belt-evolution', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (687, 'JI-M-LB-0011-29', 'JI Lock Belt-IMP Metro', 2, '340.0000', '1290.0000', '1.0000', 'no_image.png', 2, 25, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-lock-belt-imp-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (688, 'JI-M-IBLT-0126-24', 'JI Italian L Belt-Palmila', 2, '350.0000', '1250.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-l-belt-palmila', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (689, 'JI-M-IBLT-0065-26', 'JI Italian L Belt-Hony', 2, '850.0000', '850.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (690, 'JI-M-IBLT-0063-29', 'JI Italian L Belt-Metro', 2, '890.0000', '890.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-metro', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (691, 'JI-M-IBLT-0032-23', 'JI Italian L Belt-MAGIC', 2, '1080.0000', '1080.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (692, 'JI-M-IBLT-0030-23', 'JI Italian L Belt-MAGIC', 2, '1080.0000', '1080.0000', '1.0000', 'no_image.png', 2, 16, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-magic', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (693, 'JI-M-ISM-0019-26', 'JI Italian Steel Bkl-Hony', 2, '550.0000', '1350.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (694, 'JI-M-ILB-0001-26', 'JI Indian L Belt-Hony', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-l-belt-hony', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (695, 'JI-M-ILB-0021-27', 'JI Leather Belt-Point', 2, '215.0000', '600.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-point', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (696, 'JI-M-ILB-0021-38', 'JI Leather Belt-Santafi', 2, '215.0000', '520.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-santafi', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (697, 'JI-M-ILB-0015-27', 'JI Leather Belt-Point', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-point', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (698, 'JI-M-ILB-0015-37', 'JI Leather Belt-Melody', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-melody', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (699, 'JI-M-ILB-0015-38', 'JI Leather Belt-Santafi', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-santafi', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (700, 'JI-M-ILB-0026-27', 'JI Indian Leather Belt-Point', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt-point', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (701, 'JI-M-ILB-0026-26', 'JI Indian Leather Belt-Hony', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt-hony', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (702, 'JI-M-ILB-0027-27', 'JI Indian Leather Belt-Point', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt-point', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (703, 'JI-M-ILB-0027-36', 'JI Indian Leather Belt-Bali', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (704, 'JI-M-ILB-0014-41', 'JI Leather Belt-Lce', 2, '215.0000', '560.0000', '1.0000', 'no_image.png', 2, 14, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-lce', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (705, 'JI-M-ILB-0019-27', 'JI Leather Belt-Point', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, 24, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-leather-belt-point', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (706, 'JI-M-ILB-0027-37', 'JI Indian Leather Belt-Melody', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt-melody', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (707, 'JI-M-ILB-0028-36', 'JI Indian Leather Belt-Bali', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt-bali', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (708, 'JI-M-ILB-0029-27', 'JI Indian Leather Belt-Point', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt-point', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (709, 'JI-M-ILB-0030-48', 'JI Indian Leather Belt-Imported', 2, '215.0000', '550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt-imported', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (710, 'C-W-WLB-0001', 'C Ladies Bag ', 2, '560.0000', '560.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '560.5000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'c-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (711, 'JI-M-ILB-0031', 'JI Indian Leather Belt', 2, '375.0000', '1120.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '24.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (712, 'JI-M-IBLT-0128-19', 'JI Italian L Belt-Evolution', 2, '325.0000', '1250.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-evolution', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (713, 'JI-M-IBLT-0130-48', 'JI Italian L Belt-Imported', 2, '700.0000', '1880.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (714, 'JI-M-IBLT-0131-48', 'JI Italian L Belt-IMPORTED', 2, '450.0000', '1550.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (715, 'JI-M-IEL-0008', 'JI Italian Limited edition', 2, '650.0000', '1990.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (716, 'JI-M-IEL-0009', 'JI Italian Limited edition', 2, '550.0000', '1850.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (717, 'JI-M-IEL-0010', 'JI Italian Limited edition', 2, '2000.0000', '4850.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (718, 'JI-M-IEL-0011', 'JI Italian Limited edition', 2, '350.0000', '950.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (719, 'JI-M-IEL-0012', 'JI Italian Limited edition', 2, '350.0000', '1050.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (720, 'JI-M-IEL-0013', 'JI Italian Limited edition', 2, '350.0000', '1150.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (721, 'JI-M-IEL-0014', 'JI Italian Limited edition', 2, '1000.0000', '2490.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (722, 'JI-M-IEL-0015', 'JI Italian Limited edition', 2, '500.0000', '1290.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (723, 'JI-M-IEL-0016', 'JI Italian Limited edition', 2, '550.0000', '1650.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (724, 'G7-W-SPRAY-0001', 'G7 BLUE LADY  SPREAY WITH DEO', 2, '520.0000', '660.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-blue-lady-spreay-with-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (725, 'G7-W-SPRAY-0002', 'G7 JAGUAR CLASSIC SPREAY ', 2, '950.0000', '1950.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-jaguar-classic-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (726, 'G7-W-SPRAY-0003', 'G7 JAGUAR GREEN  SPREAY ', 2, '950.0000', '1950.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-jaguar-green-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (727, 'G7-W-SPRAY-0004', 'G7 PURE OUDI SPREAY ', 2, '750.0000', '1750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-pure-oudi-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (728, 'G7-W-SPRAY-0005', 'G7 OUD MOOD  SPREAY ', 2, '800.0000', '1450.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-oud-mood-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (729, 'G7-W-SPRAY-0006', 'G7 DAVIDOFF COOL WATER  SPREAY ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-davidoff-cool-water-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (730, 'G7-W-SPRAY-0007', 'G7 OUD 24 HOURS  SPREAY ', 2, '900.0000', '1880.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-oud-24-hours-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (731, 'G7-W-SPRAY-0008', 'G7 1 MILLION  SPREAY ', 2, '3150.0000', '3950.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-1-million-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (732, 'G7-W-SPRAY-0009', 'G7 SHAIKH SHUKUkH SPREAY ', 2, '850.0000', '1760.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-shaikh-shukukh-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (733, 'G7-W-SPRAY-0010', 'G7 POLO GREEN SPREAY ', 2, '3200.0000', '4550.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-polo-green-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (734, 'G7-W-SPRAY-0011', 'G7 KOUROS SPREAY ', 2, '2600.0000', '3850.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-kouros-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (735, 'G7-W-SPRAY-0012', 'G7 ETERNITY  SPREAY ', 2, '1600.0000', '2650.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-eternity-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (736, 'G7-W-SPRAY-0013', 'G7 ARMANI CODE   SPREAY ', 2, '2600.0000', '3850.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-armani-code-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (737, 'G7-W-SPRAY-0014', 'G7 KHASHAB&OUD   SPREAY ', 2, '650.0000', '1250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-khashaboud-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (738, 'G7-W-SPRAY-0015', 'G7 LATTAFA   SPREAY ', 2, '850.0000', '1750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-lattafa-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (739, 'G7-W-SPRAY-0016', 'G7 MARQUIS SPREAY ', 2, '750.0000', '950.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-marquis-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (740, 'G7-W-SPRAY-0017', 'G7 212MEN NYC SPREAY ', 2, '2950.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-212men-nyc-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (741, 'G7-W-SPRAY-0018', 'G7 ISSEY MIYAKE  SPREAY ', 2, '2800.0000', '3950.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-issey-miyake-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (742, 'G7-W-SPRAY-0019', 'G7 NUIT DISSEY SPREAY ', 2, '2800.0000', '3350.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-nuit-dissey-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (743, 'G7-W-SPRAY-0020', 'G7 VERSACE  SPREAY ', 2, '360.0000', '580.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-versace-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (744, 'G7-W-SPRAY-0021', 'G7 TOMY GIRL  SPREAY ', 2, '360.0000', '560.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-tomy-girl-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (745, 'G7-W-SPRAY-0022', 'G7 GUCCI BY GUCCI  SPREAY ', 2, '360.0000', '550.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-gucci-by-gucci-spreay', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (746, 'G7-W-SPRAY-0023', 'G7 ISSEY MIYAKE DEO', 2, '360.0000', '560.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-issey-miyake', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (747, 'G7-W-SPRAY-0024', 'G7 ACQUA DI GIO ARMANI DEO', 2, '380.0000', '580.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-acqua-di-gio-armani-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (748, 'G7-W-SPRAY-0025', 'G7 CK ONE SUMMER DEO', 2, '350.0000', '550.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ck-one-summer-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (749, 'G7-W-SPRAY-0026', 'G7 COOL WATER DEO', 2, '350.0000', '560.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-cool-water-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (750, 'G7-W-SPRAY-0027', 'G7  1 MILLION  DEO', 2, '360.0000', '560.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-1-million-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (751, 'G7-W-SPRAY-0028', 'G7 STAG  DEO', 2, '140.0000', '249.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-stag-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (752, 'G7-W-SPRAY-0029', 'G7 ACTIVE  DEO', 2, '140.0000', '249.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-active-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (753, 'G7-W-SPRAY-0030', 'G7 JOVAN WHITE MUSK   DEO', 2, '140.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-jovan-white-musk-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (754, 'G7-W-SPRAY-0031', 'G7 ROMANCE  DEO', 2, '560.0000', '650.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-romance-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (755, 'G7-W-SPRAY-0032', 'G7 DOVE  DEO', 2, '140.0000', '250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-dove-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (756, 'G7-W-SPRAY-0033', 'G7UNITED DREAMS  DEO', 2, '210.0000', '390.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7united-dreams-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (757, 'G7-W-SPRAY-0034', 'G7 MONT BLANC SPRAY', 2, '1800.0000', '2850.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mont-blanc-deo', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (758, 'G7-W-SPRAY-0035', 'G7 LEGEND LUMANI   SPRAY', 2, '580.0000', '850.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-legend-lumani-spray', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (759, 'G7-W-SPRAY-0036', 'G7 MAXI  SPRAY', 2, '600.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-maxi-spray', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (760, 'G7-W-SPRAY-0037', 'G7 ONE MAN SHOW SPRAY', 2, '650.0000', '790.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-one-man-show-spray', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (761, 'G7-W-SPRAY-0038', 'G7 BVLGARI SPRAY', 2, '380.0000', '580.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-bvlgari-spray', NULL, '0.0000', 33072000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (762, 'JI-M-IBLT-0132-48', 'JI Italian L Belt-IMPORTED', 2, '650.0000', '1250.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (763, 'JI-M-IBLT-0133-48', 'JI Italian L Belt-IMPORTED', 2, '650.0000', '2950.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-imported', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (764, 'G7-M-LWLT-0059-4', 'G7 Leather Wallet-TAN', 2, '220.0000', '990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '96.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (765, 'G7-M-LWLT-0059-3', 'G7 Leather Wallet-BROWN', 2, '220.0000', '990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '100.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (766, 'G7-M-LWLT-0059-1', 'G7 Leather Wallet-BLACK', 2, '220.0000', '990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '95.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (767, 'G7-M-PWLT-0005', 'G7 Passport Wallet', 2, '360.0000', '1990.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', '99.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '295.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (768, 'G7-M-PWLT-0006', 'G7 Passport Wallet', 2, '140.0000', '999.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', '96.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '295.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (769, 'G7-M-PWLT-0007', 'G7 Passport Wallet', 2, '215.0000', '999.0000', '1.0000', 'no_image.png', 2, 32, '', '', '', '', '', '', '96.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '295.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-passport-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (770, 'G7-M-LWLT-0060-1', 'G7 Leather Wallet-BLACK', 2, '240.0000', '870.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (771, 'G7-M-LWLT-0060-3', 'G7 Leather Wallet-BROWN', 2, '240.0000', '870.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (772, 'G7-M-LWLT-0060-4', 'G7 Leather Wallet-TAN', 2, '240.0000', '870.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (773, 'G7-M-LWLT-0061-4', 'G7 Leather Wallet-TAN', 2, '240.0000', '890.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (774, 'G7-M-LWLT-0061-3', 'G7 Leather Wallet-BROWN', 2, '240.0000', '890.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (775, 'G7-M-LWLT-0061-1', 'G7 Leather Wallet-BLACK', 2, '240.0000', '890.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (776, 'G7-M-LWLT-0062-1', 'G7 Leather Wallet-BLACK', 2, '240.0000', '840.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-black', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (777, 'G7-M-LWLT-0062-3', 'G7 Leather Wallet-BROWN', 2, '240.0000', '840.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-brown', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (778, 'G7-M-LWLT-0062-4', 'G7 Leather Wallet-TAN', 2, '240.0000', '840.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '283.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet-tan', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (779, 'JI-B-BBLT-0010', 'JI Baby Belt-30mm', 2, '390.0000', '390.0000', '1.0000', 'no_image.png', 9, 27, '', '', '', '', '', '', '216.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-baby-belt-30mm', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (780, 'LHB-01', 'LADIES HAND BAG', 2, '36.7500', '36.7500', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1112.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'ladies-hand-bag', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (781, 'LHB-02', 'LADIES BACK PACK BAG', 2, '36.7500', '36.7500', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '576.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ladies-back-pack-bag', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (782, 'LHB-03', 'TROLLEY BAG(SMALL)', 2, '276.0000', '276.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '16.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'trolley-bagsmall', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (783, 'LHB-04', 'LADIES WALLET', 2, '19.0000', '19.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5072.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ladies-wallet', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (784, 'LHB-05', 'TROLLEY BAG', 2, '552.0000', '552.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'trolley-bag', NULL, '0.0000', 4, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (785, 'LHB-06', 'TROLLEY BAG(SMALL)', 2, '276.0000', '276.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '16.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'trolley-bagsmall', NULL, '0.0000', 42022290, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (786, 'G7-W-WLB-0043', 'G7 Ladies Hand Bag', 2, '440.0000', '1320.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '16.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (787, 'G7-M-BK-0019', 'G7 Back Pack', 2, '440.0000', '1100.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '13.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (788, 'G7-M-BK-0020', 'G7 Back Pack', 2, '540.0000', '1350.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '14.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (789, 'G7-M-BK-0021', 'G7 Back Pack', 2, '350.0000', '1050.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (790, 'G7-M-BK-0022', 'G7 Back Pack', 2, '350.0000', '1050.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (791, 'G7-M-BK-0023', 'G7 Back Pack', 2, '350.0000', '1050.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (792, 'G7-M-BK-0024', 'G7 Back Pack', 2, '350.0000', '1050.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (793, 'G7-W-WLB-0044', 'G7 Ladies  combo hand Bag', 2, '475.0000', '1425.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-combo-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (794, 'G7-W-WLB-0045', 'G7 Ladies hand Bag', 2, '750.0000', '1875.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (795, 'G7-W-WLB-0046', 'G7 Ladies hand Bag', 2, '400.0000', '1200.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (796, 'G7-W-WLB-0047', 'G7 Ladies hand Bag', 2, '440.0000', '1220.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (797, 'G7-W-WLB-0048', 'G7 Ladies hand Bag', 2, '400.0000', '1200.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '11.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (798, 'G7-W-WLB-0049', 'G7 Ladies combo  hand Bag', 2, '440.0000', '1320.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '11.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-combo-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (799, 'G7-W-WLB-0050', 'G7 Ladies combo hand Bag', 2, '440.0000', '1320.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-combo-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (800, 'G7-W-WLB-0051', 'G7 Ladies combo hand Bag', 2, '600.0000', '1500.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '16.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-combo-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (801, 'G7-W-WLB-0052', 'G7 Ladies  hand Bag', 2, '400.0000', '1350.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (802, 'G7-W-WLB-0053', 'G7 Ladies  hand Bag', 2, '360.0000', '1080.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '19.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (803, 'G7-W-WLB-0054', 'G7 Ladies hand Bag', 2, '440.0000', '1320.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '7.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (804, 'G7-W-WLB-0055', 'G7 Ladies hand Bag', 2, '1000.0000', '2490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (805, 'G7-W-WLB-0056', 'G7 Ladies hand Bag', 2, '1000.0000', '2490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (806, 'G7-W-WLB-0057', 'G7 Ladies hand Bag', 2, '1000.0000', '2590.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (807, 'G7-W-WLB-0058', 'G7 Ladies hand Bag', 2, '550.0000', '1650.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (808, 'G7-W-WLB-0059', 'G7 Ladies hand Bag', 2, '1000.0000', '2490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (809, 'G7-W-WLB-0060', 'G7 Ladies hand Bag', 2, '1000.0000', '2490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (810, 'G7-W-WLB-0061', 'G7 Ladies hand Bag', 2, '1000.0000', '2490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (811, 'G7-W-WLB-0062', 'G7 Ladies SideBag', 2, '500.0000', '1490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-sidebag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (812, 'G7-W-WLB-0063', 'G7 Ladies hand Bag', 2, '1000.0000', '2490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (813, 'G7-W-WLB-0064', 'G7 Ladies side Bag', 2, '800.0000', '1590.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (814, 'G7-W-WLB-0065', 'G7 Ladies hand Bag', 2, '1000.0000', '2490.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (815, 'G7-W-WLB-0066', 'G7 Ladies hand Bag', 2, '700.0000', '1990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (816, 'G7-W-WLB-0067', 'G7 Ladies hand Bag', 2, '700.0000', '1990.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (817, 'G7-W-WLB-0068', 'G7 Ladies hand Bag', 2, '500.0000', '1620.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (818, 'G7-W-WLB-0069', 'G7 Ladies hand Bag', 2, '800.0000', '2550.0000', '1.0000', 'no_image.png', 3, 31, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hand-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (819, 'G7-M-TB-0006', 'G7 Travelling Bag', 2, '1600.0000', '3300.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3304.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-traelling-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (820, 'G7-M-TB-0007', 'G7 Travelling Bag', 2, '1700.0000', '3600.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3304.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-travelling-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (821, 'G7-M-TB-0008', 'G7 Travelling Bag', 2, '1700.0000', '3600.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 9, '3304.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-travelling-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (822, 'ls-patti-0001', 'LS Leather Stripes', 2, '39.0000', '39.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '24.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'ls-leather-stripes', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (823, 'G7-W-WC-0011', 'G7 Calch', 2, '63.0000', '180.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (824, 'G7-W-WC-0012', 'G7 Calch', 2, '90.0000', '210.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (825, 'G7-W-WC-0013', 'G7 Calch', 2, '135.0000', '250.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (826, 'G7-W-WC-0014', 'G7 Calch', 2, '121.5000', '250.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (827, 'G7-W-WC-0015', 'G7 Calch', 2, '153.0000', '290.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (828, 'G7-W-WC-0016', 'G7 Calch', 2, '148.5000', '250.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (829, 'G7-W-WC-0017', 'G7 Calch', 2, '148.5000', '250.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (830, 'G7-W-WC-0018', 'G7 Calch', 2, '130.5000', '280.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (831, 'G7-W-WC-0019', 'G7 Calch', 2, '135.0000', '250.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (832, 'G7-W-WLB-0070', 'G7 Ladies side Bag', 2, '135.0000', '250.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '30.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (833, 'G7-W-WLB-0071', 'G7 Ladies Hend Bag', 2, '324.0000', '998.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '8.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hend-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (834, 'G7-W-WLB-0072', 'G7 Ladies sideBag', 2, '157.5000', '290.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-sidebag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (835, 'G7-M-BK-0025', 'G7 Small  Back Pack', 2, '153.0000', '340.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-small-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (836, 'G7-W-WLB-0073', 'G7 Ladies side Bag', 2, '157.5000', '290.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (837, 'G7-W-WC-0020', 'G7 Calch', 2, '121.5000', '270.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (838, 'G7-W-WLB-0074', 'G7 Ladies side Bag', 2, '711.0000', '1670.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-side-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (839, 'G7-W-WLB-0075', 'G7 Ladies hend Bag', 2, '297.0000', '835.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hend-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (840, 'G7-M-BK-0026', 'G7 Small  Back Pack', 2, '157.5000', '340.0000', '1.0000', 'no_image.png', 2, 7, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-small-back-pack', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (842, 'BU-0001', 'BUCKLE(FOR WAIST BELT)', 2, '13.5700', '13.5700', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8381.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'bucklefor-waist-belt', NULL, '0.0000', 83089099, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (843, 'G7-W-WC-0021', 'G7 Calch', 2, '250.0000', '749.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-calch', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (844, 'G7-W-WLB-0080', 'G7 Ladies sideBag', 2, '400.0000', '1090.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-ladies-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (845, 'LP-1', 'LEATHER STRIPES', 2, '120.0000', '120.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '174.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'leather-stripes', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (846, 'LB-1', 'LEATHER BELT', 2, '105.7500', '105.7500', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '803.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'leather-belt', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (847, 'G7-M-SB-000010', 'G7 Side Bag-BLACK', 2, '400.0000', '1499.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'g7-side-bag-black', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (848, 'G7-M-SB-000011', 'G7 Side Bag-BROWN', 2, '750.0000', '1990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-side-bag-brown', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (849, 'JI-M-IEL-0017', 'JI Italian Limited Edition ', 2, '500.0000', '2850.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (850, 'JI-M-IEL-0018', 'JI Italian Limited Edition -ECO', 2, '350.0000', '1350.0000', '1.0000', 'no_image.png', 2, 21, '', '', '', '', '', '', '2.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-limited-edition-eco', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (851, 'G7-W-WLB-0076', 'G7 Ladies hend Bag-066', 2, '300.0000', '835.0000', '1.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-ladies-hend-bag-066', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (852, 'JI-M-IBLT-0134-48', 'JI Italian L Belt--078', 2, '390.0000', '1170.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-078', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (853, 'JI-M-CBLT-0003', 'JI Ceramic Belt - 0.180', 2, '900.0000', '2850.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-ceramic-belt-0180', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (854, 'JI-M-CBLT-0004', 'JI Ceramic Belt - 0.180', 2, '900.0000', '2850.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceranic-belt-0.180', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (855, 'JI-M-CBLT-0005', 'JI Ceramic Belt ', 2, '900.0000', '2850.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceramic-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (856, 'JI-M-CBLT-0006', 'JI Ceramic Belt ', 2, '900.0000', '2850.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceramic-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (857, 'JI-M-CBLT-0007', 'JI Ceramic Belt -40%', 2, '900.0000', '2850.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceramic-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (858, 'JI-M-CBLT-0008', 'JI Ceramic  kanta Belt ', 2, '800.0000', '2700.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceramic-kanta-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (859, 'JI-M-CBLT-0010', 'JI Ceramic  kanta Belt-40%', 2, '800.0000', '2700.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceramic-kanta-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (860, 'JI-M-CBLT-0011', 'JI Ceramic Belt ', 2, '900.0000', '2850.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-ceramic-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (861, 'JI-M-ILB-0032', 'JI Indian Leather Belt', 2, '150.0000', '390.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (862, 'JI-M-IBLT-0135', 'JI Italian L Belt', 2, '225.0000', '790.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (863, 'JI-M-IBLT-0136', 'JI Italian L Belt', 2, '290.0000', '990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (864, 'JI-M-IBLT-0137', 'JI Italian L Belt', 2, '225.0000', '860.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '35.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (865, 'JI-M-IBLT-0138', 'JI Italian L Belt', 2, '500.0000', '1990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '29.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (866, 'JI-M-IBLT-0139', 'JI Italian L Belt', 2, '250.0000', '990.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '29.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (867, 'G7-M-LWLT-0063', 'G7 Leather Wallet', 2, '100.0000', '499.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (868, 'G7-M-LWLT-0064', 'G7 Leather Wallet', 2, '100.0000', '499.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-leather-wallet', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (869, 'G7-W-WMB-0002', 'G7 Mobile Bag', 2, '250.0000', '999.0000', '1.0000', 'no_image.png', 3, 42, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mobile-bag', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (870, 'G7-MC-0001', 'G7 MONY CLIP', 2, '150.0000', '499.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mony-clip', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (871, 'G7-MC-0002', 'G7 MONY CLIP', 2, '150.0000', '499.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mony-clip', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (872, 'G7-MC-0003', 'G7 MONY CLIP', 2, '150.0000', '499.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mony-clip', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (873, 'G7-MC-0004', 'G7 MONY CLIP', 2, '150.0000', '499.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mony-clip', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (874, 'G7-MC-0005', 'G7 MONY CLIP', 2, '150.0000', '499.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-mony-clip', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (875, 'BU-3', 'Buckle-3', 2, '10.0000', '10.0000', '1.0000', 'no_image.png', 2, 1, '', '', '', '', '', '', '6125.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'buckle-3', NULL, '0.0000', 8308, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (876, 'Ji-bkl-0002', 'GENTS BELT', 2, '42.5000', '42.5000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5484.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'belt-with buckle', NULL, '0.0000', 4203, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (877, 'LWLT-1', 'GENTS WALLET', 2, '12.0000', '12.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '718.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'gents-wallet', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (878, 'EPB-1', 'EMPTY PACKING BOX(FOR WALLET)', 2, '12.0000', '12.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '372.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'empty-packing-boxfor-wallet', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (879, 'DS-1', 'DISPLAY STAND ', 2, '80.0000', '80.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '50.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'display-stand', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (880, 'DS-2', 'DISPLAY STAND ', 2, '40.0000', '40.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '120.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'display-stand', NULL, '0.0000', 0, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (881, 'JI-M-IBLT-0140', 'JI Italian L Belt', 2, '250.0000', '999.0000', '1.0000', 'no_image.png', 2, 1, '', '', '', '', '', '', '24.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (882, 'JI-M-IBLT-0141', 'JI Italian L Belt', 2, '250.0000', '999.0000', '1.0000', 'no_image.png', 2, 1, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (883, 'JI-M-IBLT-0142', 'JI Italian L Belt-30%', 2, '300.0000', '999.0000', '1.0000', 'no_image.png', 2, 1, '', '', '', '', '', '', '18.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-30', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (884, 'JI-M-IBLT-0143', 'JI Italian L Belt-20%', 2, '300.0000', '750.0000', '1.0000', 'no_image.png', 2, 1, '', '', '', '', '', '', '30.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt-20', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (885, 'JI-M-BBI-0014', 'JI Ind Brass Bkl-30%', 2, '1450.0000', '1450.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 1, 'ji-ind-brass-bkl', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (886, 'JI-M-ILB-0033', 'JI Indian Leather Belt', 2, '630.0000', '650.0000', '1.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-indian-leather-belt', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (887, 'JI-M-ISM-0005', 'JI Italian Steel Bkl-KRT', 2, '1690.0000', '1690.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '12.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-krt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (888, 'JI-M-ISM-0006', 'JI Italian Steel Bkl-KRT-40%', 2, '1999.0000', '1999.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '30.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-krt-40%', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (889, 'JI-M-CWLT-0006', 'JI Chain Wallet(Esiposs)', 2, '1190.0000', '1190.0000', '1.0000', 'no_image.png', 3, 45, '', '', '', '', '', '', '10.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-chain-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (890, 'JI-M-ISM-0007', 'JI Italian Steel Bkl-KRT', 2, '1890.0000', '1890.0000', '1.0000', 'no_image.png', 2, 18, '', '', '', '', '', '', '30.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-steel-bkl-krt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (891, 'JI-1', 'LEDIES BEG-838', 2, '240.0000', '240.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ledies-beg-838', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (892, 'JI-2', 'CHAIN WALLET-16070', 2, '650.0000', '650.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'chain-wallet', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (893, 'JI-3', 'BEG-1688', 2, '290.0000', '290.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-1688', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (894, 'JI-4', 'BEG-19101', 2, '390.0000', '390.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-19101', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (895, 'JI-5', 'BEG-7155', 2, '300.0000', '300.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-7155', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (896, 'JI-6', 'BEG-939', 2, '390.0000', '390.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-939', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (897, 'JI-7', 'Back Pack19063', 2, '250.0000', '250.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'back-pack19063', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (898, 'JI-8', 'BEG-7162', 2, '80.0000', '80.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-7162', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (899, 'JI-9', 'BEG-18018', 2, '300.0000', '300.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-18018', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (900, 'JI-10', 'BEG-860', 2, '80.0000', '80.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-860', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (901, 'JI-11', 'BEG-856', 2, '250.0000', '250.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-856', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (902, 'JI-12', 'BEG-616', 2, '240.0000', '240.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'beg-616', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (903, 'JI-13', 'LEDIES WALLET-19008', 2, '80.0000', '80.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ledies-wallet-19008', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (904, 'JI-14', 'LEDIES WALLET-16039', 2, '80.0000', '80.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '14.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ledies-wallet-16039', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (905, 'JI-15', 'BACK PACK-686', 2, '250.0000', '250.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'back-pack-686', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (906, 'JI-M-IBLT-0144', 'JI Italian L Belt', 2, '550.0000', '990.0000', '1.0000', 'no_image.png', 2, 1, '', '', '', '', '', '', '15.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 1, 'ji-italian-l-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (907, 'JI-16', 'JI PURSE', 2, '300.0000', '300.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'ji-purse', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (908, 'JI-17', 'JI PURSE', 2, '290.0000', '290.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ji-purse', NULL, '0.0000', 4202, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (909, 'LS-007', 'LS Slipper', 2, '749.3000', '749.0000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', '9.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 3, 'ls-slipper', NULL, '0.0000', 6403, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (910, 'LS-009', 'LS Slipper', 2, '861.4000', '861.4000', '1.0000', 'no_image.png', 2, 8, '', '', '', '', '', '', NULL, 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 3, 'ls-slipper', NULL, '0.0000', 6403, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (911, 'BU-4', 'BUCKLE(FOR WAIST BELT)', 2, '5.2500', '5.2500', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6379.0000', 5, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'bucklefor-waist-belt', NULL, '0.0000', 42033000, 0, 0, '');
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`) VALUES (912, 'G7-M-SLB-0004', 'G7 Sling Bag', 2, '100.0000', '249.0000', '1.0000', 'no_image.png', 2, 38, '', '', '', '', '', '', '26.0000', 5, 1, '', NULL, 'code128', '', '', 0, 'standard', 11, '944.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 2, 'g7-sling-bag', NULL, '0.0000', 42033120, 0, 0, '');


#
# TABLE STRUCTURE FOR: sma_purchase_items
#

DROP TABLE IF EXISTS `sma_purchase_items`;

CREATE TABLE `sma_purchase_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `purchase_id` int(11) DEFAULT NULL,
  `transfer_id` int(11) DEFAULT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(50) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_cost` decimal(25,4) NOT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(20) DEFAULT NULL,
  `discount` varchar(20) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `expiry` date DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `quantity_balance` decimal(15,4) DEFAULT '0.0000',
  `date` date NOT NULL,
  `status` varchar(50) NOT NULL,
  `unit_cost` decimal(25,4) DEFAULT NULL,
  `real_unit_cost` decimal(25,4) DEFAULT NULL,
  `quantity_received` decimal(15,4) DEFAULT NULL,
  `supplier_part_no` varchar(50) DEFAULT NULL,
  `purchase_item_id` int(11) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `purchase_id` (`purchase_id`),
  KEY `product_id` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1594 DEFAULT CHARSET=utf8;

INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1, NULL, NULL, 1, 'JI-BLT-000001', 'JI Belt 001', 1, '49.0000', '10.0000', 1, '58.8000', 4, '12.0000%', NULL, NULL, NULL, '548.8000', '2.0000', '2018-10-06', 'received', '54.8800', NULL, '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2, NULL, NULL, 1, 'JI-BLT-000001', 'JI Belt 001', 2, '49.0000', '50.0000', 1, '294.0000', 4, '12.0000%', NULL, NULL, NULL, '2744.0000', '50.0000', '2018-10-06', 'received', '54.8800', NULL, '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5, NULL, NULL, 2, 'BLT', 'Balt', 3, '50.0000', '5.0000', 1, '12.5000', 3, '5.0000%', NULL, NULL, NULL, '262.5000', '5.0000', '2018-10-11', 'received', '52.5000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6, NULL, NULL, 2, 'BLT', 'Balt', 4, '50.0000', '10.0000', 1, '25.0000', 3, '5.0000%', NULL, NULL, NULL, '525.0000', '10.0000', '2018-10-11', 'received', '52.5000', NULL, '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9, NULL, NULL, 3, 'G7-M-OB-000002', 'G7 Office Bag 000002', 5, '2966.1017', '8.0000', 1, '4271.1864', 5, '18.0000%', NULL, NULL, NULL, '28000.0000', '8.0000', '2018-10-11', 'received', '3500.0000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10, NULL, NULL, 3, 'G7-M-OB-000002', 'G7 Office Bag 000002', 6, '2966.1017', '8.0000', 1, '4271.1864', 5, '18.0000%', NULL, NULL, NULL, '28000.0000', '8.0000', '2018-10-11', 'received', '3500.0000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11, NULL, NULL, 3, 'G7-M-OB-000002', 'G7 Office Bag 000002', 7, '2966.1017', '8.0000', 1, '4271.1864', 5, '18.0000%', NULL, NULL, NULL, '28000.0000', '8.0000', '2018-10-11', 'received', '3500.0000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12, NULL, NULL, 2, 'BLT', 'JI Belt 000001', 3, '50.0000', '-10.0000', 2, '2.5000', 3, '5%', NULL, NULL, NULL, '-525.0000', '0.0000', '2018-10-11', 'received', '52.5000', '50.0000', '-10.0000', NULL, NULL, 2, 'PCS', '-10.0000', '5%', '0.0000', '0.0000', '-25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13, NULL, NULL, 4, 'G7-M-OB-000002', 'G7 Office Bag', 8, '3500.0000', '5.0000', 1, '3150.0000', 5, '18.0000%', NULL, NULL, NULL, '20650.0000', '0.0000', '2018-10-11', 'received', '4130.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14, NULL, NULL, 4, 'G7-M-OB-000002', 'G7 Office Bag', 9, '3500.0000', '10.0000', 1, '6300.0000', 5, '18.0000%', NULL, NULL, NULL, '41300.0000', '5.0000', '2018-10-11', 'received', '4130.0000', NULL, '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15, NULL, NULL, 4, 'G7-M-OB-000002', 'G7 Office Bag', 10, '3500.0000', '5.0000', 1, '3150.0000', 5, '18.0000%', NULL, NULL, NULL, '20650.0000', '1.0000', '2018-10-11', 'received', '4130.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16, NULL, NULL, 5, 'G7-M-OB-000003', 'G7 Office Bag', 11, '2838.9831', '5.0000', 1, '2555.0847', 5, '18.0000%', NULL, NULL, NULL, '16750.0000', '2.0000', '2018-10-11', 'received', '3350.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17, NULL, NULL, 5, 'G7-M-OB-000003', 'G7 Office Bag', 12, '2838.9831', '5.0000', 1, '2555.0847', 5, '18.0000%', NULL, NULL, NULL, '16750.0000', '2.0000', '2018-10-11', 'received', '3350.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18, NULL, NULL, 6, 'G7-M-WLT-000004', 'G7 Wallet', NULL, '8.4746', '33.0000', 1, '50.3390', 5, '18.0000%', NULL, NULL, NULL, '330.0000', '33.0000', '2018-10-11', 'received', '10.0000', '10.0000', '33.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19, NULL, NULL, 4, 'G7-M-OB-000001', 'G7 Office Bag', 13, '2966.1017', '36.0000', 1, '19220.3390', 5, '18.0000%', NULL, NULL, NULL, '126000.0000', '0.0000', '2018-10-12', 'received', '3500.0000', NULL, '36.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (20, NULL, NULL, 7, 'G7-M-SB-000001', 'G7 Side Bag', 14, '1601.6949', '44.0000', 1, '12685.4237', 5, '18.0000%', NULL, NULL, NULL, '83160.0000', '39.0000', '2018-10-12', 'received', '1890.0000', NULL, '44.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (21, NULL, NULL, 8, 'G7-M-SB-000002', 'G7 Side Bag', 15, '1559.3220', '5.0000', 1, '1403.3898', 5, '18.0000%', NULL, NULL, NULL, '9200.0000', '0.0000', '2018-10-12', 'received', '1840.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (22, NULL, NULL, 9, 'G7-M-SB-000003', 'G7 Side Bag', 16, '1559.3220', '28.0000', 1, '7858.9831', 5, '18.0000%', NULL, NULL, NULL, '51520.0000', '22.0000', '2018-10-12', 'received', '1840.0000', NULL, '28.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (23, NULL, NULL, 10, 'G7-M-LWLT-000001', 'G7 Leather Wallet', 17, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '1.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (24, NULL, NULL, 10, 'G7-M-LWLT-000001', 'G7 Leather Wallet', 18, '974.5763', '7.0000', 1, '1227.9661', 5, '18.0000%', NULL, NULL, NULL, '8050.0000', '3.0000', '2018-10-12', 'received', '1150.0000', NULL, '7.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (25, NULL, NULL, 10, 'G7-M-LWLT-000001', 'G7 Leather Wallet', 19, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '1.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (26, NULL, NULL, 10, 'G7-M-LWLT-000001', 'G7 Leather Wallet', 20, '974.5763', '7.0000', 1, '1227.9661', 5, '18.0000%', NULL, NULL, NULL, '8050.0000', '2.0000', '2018-10-12', 'received', '1150.0000', NULL, '7.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (27, NULL, NULL, 10, 'G7-M-LWLT-000001', 'G7 Leather Wallet', 21, '974.5763', '4.0000', 1, '701.6949', 5, '18.0000%', NULL, NULL, NULL, '4600.0000', '2.0000', '2018-10-12', 'received', '1150.0000', NULL, '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (28, NULL, NULL, 11, 'JI-M-IBLT-0001', 'JI Italian L Belt', 22, '813.5593', '24.0000', 1, '3514.5763', 5, '18.0000%', NULL, NULL, NULL, '23040.0000', '6.0000', '2018-10-12', 'received', '960.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (29, NULL, NULL, 11, 'JI-M-IBLT-0001', 'JI Italian L Belt', 23, '813.5593', '12.0000', 1, '1757.2881', 5, '18.0000%', NULL, NULL, NULL, '11520.0000', '0.0000', '2018-10-12', 'received', '960.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (30, NULL, NULL, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 24, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '3.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (31, NULL, NULL, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 25, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '3.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (32, NULL, NULL, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 26, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '3.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (33, NULL, NULL, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 27, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '0.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (34, NULL, NULL, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 28, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '0.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (35, NULL, NULL, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 29, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '3.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (36, NULL, NULL, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 30, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '3.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (37, NULL, NULL, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 31, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '3.0000', '2018-10-12', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (38, NULL, NULL, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 32, '974.5763', '18.0000', 1, '3157.6271', 5, '18.0000%', NULL, NULL, NULL, '20700.0000', '1.0000', '2018-10-12', 'received', '1150.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (39, NULL, NULL, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 33, '974.5763', '18.0000', 1, '3157.6271', 5, '18.0000%', NULL, NULL, NULL, '20700.0000', '1.0000', '2018-10-12', 'received', '1150.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (40, NULL, NULL, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 34, '974.5763', '18.0000', 1, '3157.6271', 5, '18.0000%', NULL, NULL, NULL, '20700.0000', '6.0000', '2018-10-12', 'received', '1150.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (41, NULL, NULL, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 35, '974.5763', '18.0000', 1, '3157.6271', 5, '18.0000%', NULL, NULL, NULL, '20700.0000', '9.0000', '2018-10-12', 'received', '1150.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (42, NULL, NULL, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 36, '974.5763', '18.0000', 1, '3157.6271', 5, '18.0000%', NULL, NULL, NULL, '20700.0000', '9.0000', '2018-10-12', 'received', '1150.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (43, NULL, NULL, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 37, '974.5763', '18.0000', 1, '3157.6271', 5, '18.0000%', NULL, NULL, NULL, '20700.0000', '9.0000', '2018-10-12', 'received', '1150.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (44, NULL, NULL, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 38, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '12.0000', '2018-10-13', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (45, NULL, NULL, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 39, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-13', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (46, NULL, NULL, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 40, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-13', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (47, NULL, NULL, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 41, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-13', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (48, NULL, NULL, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 42, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-13', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (49, NULL, NULL, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 43, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '3.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (50, NULL, NULL, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 44, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '3.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (51, NULL, NULL, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 45, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '0.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (52, NULL, NULL, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 46, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '0.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (53, NULL, NULL, 16, 'JI-M-IBLT-0006', 'JI Italian L Belt', 47, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (54, NULL, NULL, 16, 'JI-M-IBLT-0006', 'JI Italian L Belt', 48, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (55, NULL, NULL, 16, 'JI-M-IBLT-0006', 'JI Italian L Belt', 49, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (56, NULL, NULL, 16, 'JI-M-IBLT-0006', 'JI Italian L Belt', 50, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (57, NULL, NULL, 16, 'JI-M-IBLT-0006', 'JI Italian L Belt', 51, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (58, NULL, NULL, 16, 'JI-M-IBLT-0006', 'JI Italian L Belt', 52, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (59, NULL, NULL, 16, 'JI-M-IBLT-0006', 'JI Italian L Belt', 53, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (60, NULL, NULL, 16, 'JI-M-IBLT-0006', 'JI Italian L Belt', 54, '1059.3220', '12.0000', 1, '2288.1356', 5, '18.0000%', NULL, NULL, NULL, '15000.0000', '12.0000', '2018-10-13', 'received', '1250.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (61, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 55, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '12.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (62, NULL, NULL, 18, 'JI-M-IBLT-0008', 'JI Italian L Belt', 56, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (63, NULL, NULL, 18, 'JI-M-IBLT-0008', 'JI Italian L Belt', 57, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (64, NULL, NULL, 18, 'JI-M-IBLT-0008', 'JI Italian L Belt', 58, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (65, NULL, NULL, 18, 'JI-M-IBLT-0008', 'JI Italian L Belt', 59, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (66, NULL, NULL, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 60, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '3.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (67, NULL, NULL, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 61, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (68, NULL, NULL, 20, 'JI-M-IBLT-0010', 'JI Italian L Belt', 62, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '0.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (69, NULL, NULL, 20, 'JI-M-IBLT-0010', 'JI Italian L Belt', 63, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '0.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (70, NULL, NULL, 20, 'JI-M-IBLT-0010', 'JI Italian L Belt', 64, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '0.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (71, NULL, NULL, 21, 'JI-M-IBLT-0011', 'JI Italian L Belt', 65, '1059.3220', '12.0000', 1, '2288.1356', 5, '18.0000%', NULL, NULL, NULL, '15000.0000', '0.0000', '2018-10-13', 'received', '1250.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (72, NULL, NULL, 22, 'JI-M-IBLT-0012', 'JI Italian L Belt', 66, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '0.0000', '2018-10-13', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (73, NULL, NULL, 22, 'JI-M-IBLT-0012', 'JI Italian L Belt', 67, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '0.0000', '2018-10-13', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (74, NULL, NULL, 23, 'JI-M-IBLT-0013', 'JI Italian L Belt', 68, '932.2034', '24.0000', 1, '4027.1186', 5, '18.0000%', NULL, NULL, NULL, '26400.0000', '7.0000', '2018-10-13', 'received', '1100.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (75, NULL, NULL, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 69, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '3.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (76, NULL, NULL, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 70, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '3.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (77, NULL, NULL, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 71, '932.2034', '12.0000', 1, '2013.5593', 5, '18.0000%', NULL, NULL, NULL, '13200.0000', '3.0000', '2018-10-13', 'received', '1100.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (78, NULL, NULL, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 72, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '3.0000', '2018-10-13', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (79, NULL, NULL, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 73, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '3.0000', '2018-10-13', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (80, NULL, NULL, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 74, '932.2034', '12.0000', 1, '2013.5593', 5, '18.0000%', NULL, NULL, NULL, '13200.0000', '0.0000', '2018-10-13', 'received', '1100.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (81, NULL, NULL, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 75, '1059.3220', '12.0000', 1, '2288.1356', 5, '18.0000%', NULL, NULL, NULL, '15000.0000', '3.0000', '2018-10-13', 'received', '1250.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (82, NULL, NULL, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 76, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '3.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (83, NULL, NULL, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 77, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '3.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (84, NULL, NULL, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 78, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '0.0000', '2018-10-13', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (85, NULL, NULL, 26, 'JI-M-IBLT-0016', 'JI Italian L Belt', 79, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-13', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (86, NULL, NULL, 26, 'JI-M-IBLT-0016', 'JI Italian L Belt', 80, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-13', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (87, NULL, NULL, 27, 'JI-M-IBLT-0017', 'JI Italian L Belt', 81, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-13', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (88, NULL, NULL, 27, 'JI-M-IBLT-0017', 'JI Italian L Belt', 82, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-13', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (89, NULL, NULL, 28, 'JI-M-IBLT-0018', 'JI Italian L Belt', 83, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '0.0000', '2018-10-13', 'received', '1050.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (90, NULL, NULL, 29, 'JI-M-IBLT-0019', 'JI Italian L Belt', 84, '1144.0678', '12.0000', 1, '2471.1864', 5, '18.0000%', NULL, NULL, NULL, '16200.0000', '0.0000', '2018-10-13', 'received', '1350.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (91, NULL, NULL, 29, 'JI-M-IBLT-0019', 'JI Italian L Belt', 85, '1144.0678', '12.0000', 1, '2471.1864', 5, '18.0000%', NULL, NULL, NULL, '16200.0000', '6.0000', '2018-10-13', 'received', '1350.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (92, NULL, NULL, 30, 'Ji-M-IBB-0001', 'JI Italian  Brass Buckal', 86, '1567.7966', '6.0000', 1, '1693.2203', 5, '18.0000%', NULL, NULL, NULL, '11100.0000', '6.0000', '2018-10-13', 'received', '1850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (93, NULL, NULL, 31, 'JI-M-IBS-0001', 'JI Italian Brass Buckal', 87, '1850.0000', '6.0000', 1, '1998.0000', 5, '18.0000%', NULL, NULL, NULL, '13098.0000', '6.0000', '2018-10-13', 'received', '2183.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (94, NULL, NULL, 32, 'JI-M-IBS-0001', 'JI Italian Brass Buckal', 88, '1525.4237', '6.0000', 1, '1647.4576', 5, '18.0000%', NULL, NULL, NULL, '10800.0000', '0.0000', '2018-10-13', 'received', '1800.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (95, NULL, NULL, 32, 'JI-M-IBS-0001', 'JI Italian Brass Buckal', 89, '1525.4237', '12.0000', 1, '3294.9153', 5, '18.0000%', NULL, NULL, NULL, '21600.0000', '0.0000', '2018-10-13', 'received', '1800.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (96, NULL, NULL, 32, 'JI-M-IBS-0001', 'JI Italian Brass Buckal', 90, '1525.4237', '6.0000', 1, '1647.4576', 5, '18.0000%', NULL, NULL, NULL, '10800.0000', '0.0000', '2018-10-13', 'received', '1800.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (97, NULL, NULL, 33, 'JI-M-ISM-0001', 'JI Italian Steel Bkl', 91, '1525.4237', '6.0000', 1, '1647.4576', 5, '18.0000%', NULL, NULL, NULL, '10800.0000', '0.0000', '2018-10-13', 'received', '1800.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (98, NULL, NULL, 33, 'JI-M-ISM-0001', 'JI Italian Steel Bkl', 92, '1525.4237', '6.0000', 1, '1647.4576', 5, '18.0000%', NULL, NULL, NULL, '10800.0000', '0.0000', '2018-10-13', 'received', '1800.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (99, NULL, NULL, 34, 'JI-M-IEL-0001', 'JI Italian Limited edition ', 93, '1644.0678', '6.0000', 1, '1775.5932', 5, '18.0000%', NULL, NULL, NULL, '11640.0000', '0.0000', '2018-10-13', 'received', '1940.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (100, NULL, NULL, 34, 'JI-M-IEL-0001', 'JI Italian Limited edition ', 94, '1644.0678', '6.0000', 1, '1775.5932', 5, '18.0000%', NULL, NULL, NULL, '11640.0000', '0.0000', '2018-10-13', 'received', '1940.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (101, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 95, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (102, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 96, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (103, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 97, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (104, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 98, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (105, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 99, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (106, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 100, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (107, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 101, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (108, NULL, NULL, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 102, '1016.9492', '12.0000', 1, '2196.6102', 5, '18.0000%', NULL, NULL, NULL, '14400.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (109, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 103, '966.1017', '6.0000', 1, '1043.3898', 5, '18.0000%', NULL, NULL, NULL, '6840.0000', '0.0000', '2018-10-13', 'received', '1140.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (110, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 104, '966.1017', '6.0000', 1, '1043.3898', 5, '18.0000%', NULL, NULL, NULL, '6840.0000', '0.0000', '2018-10-13', 'received', '1140.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (111, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 105, '966.1017', '6.0000', 1, '1043.3898', 5, '18.0000%', NULL, NULL, NULL, '6840.0000', '0.0000', '2018-10-13', 'received', '1140.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (112, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 106, '966.1017', '6.0000', 1, '1043.3898', 5, '18.0000%', NULL, NULL, NULL, '6840.0000', '0.0000', '2018-10-13', 'received', '1140.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (113, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 107, '966.1017', '6.0000', 1, '1043.3898', 5, '18.0000%', NULL, NULL, NULL, '6840.0000', '0.0000', '2018-10-13', 'received', '1140.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (114, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 108, '966.1017', '12.0000', 1, '2086.7797', 5, '18.0000%', NULL, NULL, NULL, '13680.0000', '6.0000', '2018-10-13', 'received', '1140.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (115, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 109, '966.1017', '12.0000', 1, '2086.7797', 5, '18.0000%', NULL, NULL, NULL, '13680.0000', '0.0000', '2018-10-13', 'received', '1140.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (116, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 110, '966.1017', '12.0000', 1, '2086.7797', 5, '18.0000%', NULL, NULL, NULL, '13680.0000', '6.0000', '2018-10-13', 'received', '1140.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (117, NULL, NULL, 35, 'JI-M-IBLT_0006', 'JI Italian L Belt', 111, '966.1017', '6.0000', 1, '1043.3898', 5, '18.0000%', NULL, NULL, NULL, '6840.0000', '0.0000', '2018-10-13', 'received', '1140.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (118, NULL, NULL, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 112, '1567.7966', '24.0000', 1, '6772.8814', 5, '18.0000%', NULL, NULL, NULL, '44400.0000', '18.0000', '2018-10-13', 'received', '1850.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (119, NULL, NULL, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 113, '1567.7966', '24.0000', 1, '6772.8814', 5, '18.0000%', NULL, NULL, NULL, '44400.0000', '12.0000', '2018-10-13', 'received', '1850.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (120, NULL, NULL, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 114, '1567.7966', '6.0000', 1, '1693.2203', 5, '18.0000%', NULL, NULL, NULL, '11100.0000', '0.0000', '2018-10-13', 'received', '1850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (121, NULL, NULL, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 115, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '3.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (122, NULL, NULL, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 116, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (123, NULL, NULL, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 117, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '0.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (124, NULL, NULL, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 118, '1016.9492', '6.0000', 1, '1098.3051', 5, '18.0000%', NULL, NULL, NULL, '7200.0000', '3.0000', '2018-10-13', 'received', '1200.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (125, NULL, NULL, 37, 'JI-M-BBI-0001', 'JI Indian Brass Buckal', 119, '1228.8136', '24.0000', 1, '5308.4746', 5, '18.0000%', NULL, NULL, NULL, '34800.0000', '40.0000', '2018-10-15', 'received', '1450.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (126, NULL, NULL, 38, 'JI-M-IBLT-0008', 'JI Italian Leather Belt', 120, '1008.4746', '18.0000', 1, '3267.4576', 5, '18.0000%', NULL, NULL, NULL, '21420.0000', '0.0000', '2018-10-15', 'received', '1190.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (127, NULL, NULL, 38, 'JI-M-IBLT-0008', 'JI Italian Leather Belt', 121, '1008.4746', '18.0000', 1, '3267.4576', 5, '18.0000%', NULL, NULL, NULL, '21420.0000', '0.0000', '2018-10-15', 'received', '1190.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (128, NULL, NULL, 38, 'JI-M-IBLT-0008', 'JI Italian Leather Belt', 122, '1008.4746', '18.0000', 1, '3267.4576', 5, '18.0000%', NULL, NULL, NULL, '21420.0000', '3.0000', '2018-10-15', 'received', '1190.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (129, NULL, NULL, 38, 'JI-M-IBLT-0008', 'JI Italian Leather Belt', 123, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '3.0000', '2018-10-15', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (130, NULL, NULL, 38, 'JI-M-IBLT-0008', 'JI Italian Leather Belt', 124, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '3.0000', '2018-10-15', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (131, NULL, NULL, 39, 'JI-M-ILB-0001', 'JI Indian L Belt', 125, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (132, NULL, NULL, 39, 'JI-M-ILB-0001', 'JI Indian L Belt', 126, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (133, NULL, NULL, 39, 'JI-M-ILB-0001', 'JI Indian L Belt', 127, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (134, NULL, NULL, 39, 'JI-M-ILB-0001', 'JI Indian L Belt', 128, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (135, NULL, NULL, 40, 'JI-M-ILB-0002', 'JI Indian L Belt', 129, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (136, NULL, NULL, 40, 'JI-M-ILB-0002', 'JI Indian L Belt', 130, '474.5763', '12.0000', 1, '1025.0847', 5, '18.0000%', NULL, NULL, NULL, '6720.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (137, NULL, NULL, 40, 'JI-M-ILB-0002', 'JI Indian L Belt', 131, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (138, NULL, NULL, 41, 'JI-M-ILB-0003', 'JI Indian L Belt', 132, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (139, NULL, NULL, 41, 'JI-M-ILB-0003', 'JI Indian L Belt', 133, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (140, NULL, NULL, 41, 'JI-M-ILB-0003', 'JI Indian L Belt', 134, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (141, NULL, NULL, 41, 'JI-M-ILB-0003', 'JI Indian L Belt', 135, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (142, NULL, NULL, 42, 'JI-M-ILB-0004', 'JI Indian L Belt', 136, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (143, NULL, NULL, 42, 'JI-M-ILB-0004', 'JI Indian L Belt', 137, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (144, NULL, NULL, 42, 'JI-M-ILB-0004', 'JI Indian L Belt', 138, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (145, NULL, NULL, 42, 'JI-M-ILB-0004', 'JI Indian L Belt', 139, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (146, NULL, NULL, 43, 'JI-M-ILB-0005', 'JI Indian L Belt', 140, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (147, NULL, NULL, 43, 'JI-M-ILB-0005', 'JI Indian L Belt', 141, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (148, NULL, NULL, 43, 'JI-M-ILB-0005', 'JI Indian L Belt', 142, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (149, NULL, NULL, 43, 'JI-M-ILB-0005', 'JI Indian L Belt', 143, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (150, NULL, NULL, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 144, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (151, NULL, NULL, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 145, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '6.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (152, NULL, NULL, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 146, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (153, NULL, NULL, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 147, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (154, NULL, NULL, 45, 'JI-M-ILB-0007', 'JI Indian L Belt', 148, '491.5254', '6.0000', 1, '530.8475', 5, '18.0000%', NULL, NULL, NULL, '3480.0000', '0.0000', '2018-10-15', 'received', '580.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (155, NULL, NULL, 45, 'JI-M-ILB-0007', 'JI Indian L Belt', 149, '491.5254', '6.0000', 1, '530.8475', 5, '18.0000%', NULL, NULL, NULL, '3480.0000', '0.0000', '2018-10-15', 'received', '580.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (156, NULL, NULL, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 150, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '0.0000', '2018-10-15', 'received', '560.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (157, NULL, NULL, 46, 'JI-M-BBI-0002', 'JI Ind Brass Bkl', 151, '1228.8136', '47.0000', 1, '10395.7627', 5, '18.0000%', NULL, NULL, NULL, '68150.0000', '41.0000', '2018-10-15', 'received', '1450.0000', NULL, '47.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (158, NULL, NULL, 47, 'JI-M-BBI-0003', 'JI Ind Brass Bkl', 152, '1228.8136', '46.0000', 1, '10174.5763', 5, '18.0000%', NULL, NULL, NULL, '66700.0000', '40.0000', '2018-10-15', 'received', '1450.0000', NULL, '46.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (159, NULL, NULL, 48, 'JI-M-BBI-0004', 'JI Ind Brass BKL', 153, '1228.8136', '48.0000', 1, '10616.9492', 5, '18.0000%', NULL, NULL, NULL, '69600.0000', '42.0000', '2018-10-15', 'received', '1450.0000', NULL, '48.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (160, NULL, NULL, 49, 'JI-M-BBI-0005', 'JI Ind Brass Bkl', 154, '1228.8136', '42.0000', 1, '9289.8305', 5, '18.0000%', NULL, NULL, NULL, '60900.0000', '36.0000', '2018-10-15', 'received', '1450.0000', NULL, '42.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (161, NULL, NULL, 50, 'JI-M-BBI-0006', 'JI Ind Brass Bkl', 155, '1228.8136', '49.0000', 1, '10838.1356', 5, '18.0000%', NULL, NULL, NULL, '71050.0000', '37.0000', '2018-10-15', 'received', '1450.0000', NULL, '49.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (162, NULL, NULL, 51, 'JI-M-BBI-0007', 'JI Ind Brass Bkl', 156, '1228.8136', '46.0000', 1, '10174.5763', 5, '18.0000%', NULL, NULL, NULL, '66700.0000', '40.0000', '2018-10-15', 'received', '1450.0000', NULL, '46.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (163, NULL, NULL, 52, 'JI-M-BBI-0008', 'JI Ind Brass Bkl', 157, '1228.8136', '48.0000', 1, '10616.9492', 5, '18.0000%', NULL, NULL, NULL, '69600.0000', '42.0000', '2018-10-15', 'received', '1450.0000', NULL, '48.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (164, NULL, NULL, 53, 'JI-M-BBI-0009', 'JI Ind Brass Bkl', 158, '1228.8136', '8.0000', 1, '1769.4915', 5, '18.0000%', NULL, NULL, NULL, '11600.0000', '6.0000', '2018-10-15', 'received', '1450.0000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (165, NULL, NULL, 54, 'JI-M-BBI-0010', 'JI Ind Brass Bkl', 159, '1228.8136', '26.0000', 1, '5750.8475', 5, '18.0000%', NULL, NULL, NULL, '37700.0000', '20.0000', '2018-10-15', 'received', '1450.0000', NULL, '26.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (166, NULL, NULL, 55, 'JI-M-BBI-0011', 'JI Ind Brass Bkl', 160, '1228.8136', '29.0000', 1, '6414.4068', 5, '18.0000%', NULL, NULL, NULL, '42050.0000', '26.0000', '2018-10-15', 'received', '1450.0000', NULL, '29.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (167, NULL, NULL, 56, 'JI-M-BBI-0012', 'JI Ind Brass Bkl', 161, '1228.8136', '24.0000', 1, '5308.4746', 5, '18.0000%', NULL, NULL, NULL, '34800.0000', '28.0000', '2018-10-15', 'received', '1450.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (168, NULL, NULL, 57, 'JI-M-BBI-0013', 'JI Ind Brass Bkl', 162, '1228.8136', '10.0000', 1, '2211.8644', 5, '18.0000%', NULL, NULL, NULL, '14500.0000', '7.0000', '2018-10-15', 'received', '1450.0000', NULL, '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (169, NULL, NULL, 58, 'JI-M-IBLT-0020', 'JI Italian L Belt', 163, '932.2034', '12.0000', 1, '2013.5593', 5, '18.0000%', NULL, NULL, NULL, '13200.0000', '6.0000', '2018-10-16', 'received', '1100.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (170, NULL, NULL, 58, 'JI-M-IBLT-0020', 'JI Italian L Belt', 164, '932.2034', '12.0000', 1, '2013.5593', 5, '18.0000%', NULL, NULL, NULL, '13200.0000', '6.0000', '2018-10-16', 'received', '1100.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (171, NULL, NULL, 58, 'JI-M-IBLT-0020', 'JI Italian L Belt', 165, '932.2034', '12.0000', 1, '2013.5593', 5, '18.0000%', NULL, NULL, NULL, '13200.0000', '6.0000', '2018-10-16', 'received', '1100.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (172, NULL, NULL, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 166, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (173, NULL, NULL, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 167, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (174, NULL, NULL, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 168, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (175, NULL, NULL, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 169, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (176, NULL, NULL, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 170, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (177, NULL, NULL, 60, 'JI-M-IBLT-0022', 'JI Italian L Belt', 171, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (178, NULL, NULL, 60, 'JI-M-IBLT-0022', 'JI Italian L Belt', 172, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (179, NULL, NULL, 61, 'JI-M-IBLT-0023', 'JI Italian L Belt', 173, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (180, NULL, NULL, 61, 'JI-M-IBLT-0023', 'JI Italian L Belt', 174, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (181, NULL, NULL, 62, 'JI-M-IBLT-0024', 'JI Italian L Belt', 175, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (182, NULL, NULL, 63, 'JI-M-IBLT-0025', 'JI Italian L Belt', 176, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (183, NULL, NULL, 63, 'JI-M-IBLT-0025', 'JI Italian L Belt', 177, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (184, NULL, NULL, 64, 'JI-M-IBLT-0026', 'JI Italian L Belt', 178, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (185, NULL, NULL, 64, 'JI-M-IBLT-0026', 'JI Italian L Belt', 179, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-16', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (186, NULL, NULL, 65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 180, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-16', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (187, NULL, NULL, 65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 181, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-16', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (188, NULL, NULL, 65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 182, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-16', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (189, NULL, NULL, 65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 183, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-16', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (190, NULL, NULL, 66, 'JI-M-IBLT-0028', 'JI Italian L Belt', 184, '932.2034', '12.0000', 1, '2013.5593', 5, '18.0000%', NULL, NULL, NULL, '13200.0000', '0.0000', '2018-10-16', 'received', '1100.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (191, NULL, NULL, 66, 'JI-M-IBLT-0028', 'JI Italian L Belt', 185, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-16', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (192, NULL, NULL, 66, 'JI-M-IBLT-0028', 'JI Italian L Belt', 186, '932.2034', '6.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '0.0000', '2018-10-16', 'received', '1100.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (193, NULL, NULL, 67, 'JI-M-IBLT-0029', 'JI Italian L Belt', 187, '974.5763', '12.0000', 1, '2105.0847', 5, '18.0000%', NULL, NULL, NULL, '13800.0000', '0.0000', '2018-10-16', 'received', '1150.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (194, NULL, NULL, 67, 'JI-M-IBLT-0029', 'JI Italian L Belt', 188, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '0.0000', '2018-10-16', 'received', '1150.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (195, NULL, NULL, 68, 'JI-M-IBLT-0030', 'JI Italian L Belt', 189, '915.2542', '12.0000', 1, '1976.9492', 5, '18.0000%', NULL, NULL, NULL, '12960.0000', '6.0000', '2018-10-16', 'received', '1080.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (196, NULL, NULL, 69, 'JI-M-IBLT-0031', 'JI Italian L Belt', 190, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-16', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (197, NULL, NULL, 69, 'JI-M-IBLT-0031', 'JI Italian L Belt', 191, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-16', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (198, NULL, NULL, 70, 'JI-M-IBLT-0032', 'JI Italian L Belt', 192, '915.2542', '6.0000', 1, '988.4746', 5, '18.0000%', NULL, NULL, NULL, '6480.0000', '0.0000', '2018-10-16', 'received', '1080.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (199, NULL, NULL, 71, 'JI-M-IBLT-0033', 'JI Italian L Belt', 193, '1000.0000', '6.0000', 1, '1080.0000', 5, '18.0000%', NULL, NULL, NULL, '7080.0000', '0.0000', '2018-10-16', 'received', '1180.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (200, NULL, NULL, 71, 'JI-M-IBLT-0033', 'JI Italian L Belt', 194, '1000.0000', '6.0000', 1, '1080.0000', 5, '18.0000%', NULL, NULL, NULL, '7080.0000', '0.0000', '2018-10-16', 'received', '1180.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (201, NULL, NULL, 72, 'JI-M-ISM-0002', 'JI Italian Steel BKL', 195, '1525.4237', '6.0000', 1, '1647.4576', 5, '18.0000%', NULL, NULL, NULL, '10800.0000', '0.0000', '2018-10-16', 'received', '1800.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (202, NULL, NULL, 73, 'JI-M-IBLT-0034', 'JI Italian L Belt', 196, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (203, NULL, NULL, 73, 'JI-M-IBLT-0034', 'JI Italian L Belt', 197, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '8.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (204, NULL, NULL, 73, 'JI-M-IBLT-0034', 'JI Italian L Belt', 198, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (205, NULL, NULL, 74, 'JI-M-IBLT-0035', 'JI Italian L Belt', 199, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (206, NULL, NULL, 74, 'JI-M-IBLT-0035', 'JI Italian L Belt', 200, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (207, NULL, NULL, 74, 'JI-M-IBLT-0035', 'JI Italian L Belt', 201, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (208, NULL, NULL, 75, 'JI-M-IBLT-0036', 'JI Italian L Belt', 202, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (209, NULL, NULL, 75, 'JI-M-IBLT-0036', 'JI Italian L Belt', 203, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (210, NULL, NULL, 75, 'JI-M-IBLT-0036', 'JI Italian L Belt', 204, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (211, NULL, NULL, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 205, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '12.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (212, NULL, NULL, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 206, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (213, NULL, NULL, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 207, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (214, NULL, NULL, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 208, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (215, NULL, NULL, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 209, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (216, NULL, NULL, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 210, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (217, NULL, NULL, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 211, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (218, NULL, NULL, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 212, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '0.0000', '2018-10-17', 'received', '1280.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (219, NULL, NULL, 77, 'JI-M-IBLT-0038', 'JI Italian L Belt', 213, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (220, NULL, NULL, 77, 'JI-M-IBLT-0038', 'JI Italian L Belt', 214, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (221, NULL, NULL, 77, 'JI-M-IBLT-0038', 'JI Italian L Belt', 215, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (222, NULL, NULL, 78, 'JI-M-IBLT-0039', 'JI Italian L Belt', 216, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (223, NULL, NULL, 78, 'JI-M-IBLT-0039', 'JI Italian L Belt', 217, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (224, NULL, NULL, 78, 'JI-M-IBLT-0039', 'JI Italian L Belt', 218, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-17', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (225, NULL, NULL, 79, 'JI-M-IBLT-0040', 'JI Italian L Belt', 219, '915.2542', '24.0000', 1, '3953.8983', 5, '18.0000%', NULL, NULL, NULL, '25920.0000', '0.0000', '2018-10-17', 'received', '1080.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (226, NULL, NULL, 80, 'JI-M-IBLT-0041', 'JI Italian L Belt', 220, '915.2542', '18.0000', 1, '2965.4237', 5, '18.0000%', NULL, NULL, NULL, '19440.0000', '0.0000', '2018-10-17', 'received', '1080.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (227, NULL, NULL, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 221, '915.2542', '12.0000', 1, '1976.9492', 5, '18.0000%', NULL, NULL, NULL, '12960.0000', '0.0000', '2018-10-18', 'received', '1080.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (228, NULL, NULL, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 222, '915.2542', '12.0000', 1, '1976.9492', 5, '18.0000%', NULL, NULL, NULL, '12960.0000', '6.0000', '2018-10-18', 'received', '1080.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (229, NULL, NULL, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 223, '915.2542', '6.0000', 1, '988.4746', 5, '18.0000%', NULL, NULL, NULL, '6480.0000', '0.0000', '2018-10-18', 'received', '1080.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (230, NULL, NULL, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 224, '915.2542', '6.0000', 1, '988.4746', 5, '18.0000%', NULL, NULL, NULL, '6480.0000', '0.0000', '2018-10-18', 'received', '1080.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (231, NULL, NULL, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 225, '915.2542', '6.0000', 1, '988.4746', 5, '18.0000%', NULL, NULL, NULL, '6480.0000', '0.0000', '2018-10-18', 'received', '1080.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (232, NULL, NULL, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 226, '915.2542', '6.0000', 1, '988.4746', 5, '18.0000%', NULL, NULL, NULL, '6480.0000', '0.0000', '2018-10-18', 'received', '1080.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (233, NULL, NULL, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 227, '1000.0000', '9.0000', 1, '1620.0000', 5, '18.0000%', NULL, NULL, NULL, '10620.0000', '4.0000', '2018-10-18', 'received', '1180.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (234, NULL, NULL, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 228, '1000.0000', '9.0000', 1, '1620.0000', 5, '18.0000%', NULL, NULL, NULL, '10620.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (235, NULL, NULL, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 229, '1000.0000', '9.0000', 1, '1620.0000', 5, '18.0000%', NULL, NULL, NULL, '10620.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (236, NULL, NULL, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 230, '1000.0000', '9.0000', 1, '1620.0000', 5, '18.0000%', NULL, NULL, NULL, '10620.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (237, NULL, NULL, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 231, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (238, NULL, NULL, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 232, '1000.0000', '4.0000', 1, '720.0000', 5, '18.0000%', NULL, NULL, NULL, '4720.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (239, NULL, NULL, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 233, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (240, NULL, NULL, 83, 'JI-M-IBLT-0044', 'JI Italian L Belt', 234, '915.2542', '12.0000', 1, '1976.9492', 5, '18.0000%', NULL, NULL, NULL, '12960.0000', '0.0000', '2018-10-18', 'received', '1080.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (241, NULL, NULL, 83, 'JI-M-IBLT-0044', 'JI Italian L Belt', 235, '915.2542', '6.0000', 1, '988.4746', 5, '18.0000%', NULL, NULL, NULL, '6480.0000', '0.0000', '2018-10-18', 'received', '1080.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (242, NULL, NULL, 84, 'JI-M-IBLT-0045', 'JI Italian L Belt', 236, '1000.0000', '9.0000', 1, '1620.0000', 5, '18.0000%', NULL, NULL, NULL, '10620.0000', '9.0000', '2018-10-18', 'received', '1180.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (243, NULL, NULL, 84, 'JI-M-IBLT-0045', 'JI Italian L Belt', 237, '1000.0000', '6.0000', 1, '1080.0000', 5, '18.0000%', NULL, NULL, NULL, '7080.0000', '6.0000', '2018-10-18', 'received', '1180.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (244, NULL, NULL, 84, 'JI-M-IBLT-0045', 'JI Italian L Belt', 238, '1000.0000', '6.0000', 1, '1080.0000', 5, '18.0000%', NULL, NULL, NULL, '7080.0000', '6.0000', '2018-10-18', 'received', '1180.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (245, NULL, NULL, 84, 'JI-M-IBLT-0045', 'JI Italian L Belt', 239, '1000.0000', '6.0000', 1, '1080.0000', 5, '18.0000%', NULL, NULL, NULL, '7080.0000', '6.0000', '2018-10-18', 'received', '1180.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (246, NULL, NULL, 84, 'JI-M-IBLT-0045', 'JI Italian L Belt', 240, '1000.0000', '9.0000', 1, '1620.0000', 5, '18.0000%', NULL, NULL, NULL, '10620.0000', '9.0000', '2018-10-18', 'received', '1180.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (247, NULL, NULL, 84, 'JI-M-IBLT-0045', 'JI Italian L Belt', 241, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '3.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (248, NULL, NULL, 84, 'JI-M-IBLT-0045', 'JI Italian L Belt', 242, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '3.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (249, NULL, NULL, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 243, '957.6271', '9.0000', 1, '1551.3559', 5, '18.0000%', NULL, NULL, NULL, '10170.0000', '0.0000', '2018-10-18', 'received', '1130.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (250, NULL, NULL, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 244, '957.6271', '6.0000', 1, '1034.2373', 5, '18.0000%', NULL, NULL, NULL, '6780.0000', '0.0000', '2018-10-18', 'received', '1130.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (251, NULL, NULL, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 245, '957.6271', '6.0000', 1, '1034.2373', 5, '18.0000%', NULL, NULL, NULL, '6780.0000', '0.0000', '2018-10-18', 'received', '1130.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (252, NULL, NULL, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 246, '957.6271', '6.0000', 1, '1034.2373', 5, '18.0000%', NULL, NULL, NULL, '6780.0000', '0.0000', '2018-10-18', 'received', '1130.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (253, NULL, NULL, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 247, '957.6271', '9.0000', 1, '1551.3559', 5, '18.0000%', NULL, NULL, NULL, '10170.0000', '0.0000', '2018-10-18', 'received', '1130.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (254, NULL, NULL, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 248, '957.6271', '3.0000', 1, '517.1186', 5, '18.0000%', NULL, NULL, NULL, '3390.0000', '0.0000', '2018-10-18', 'received', '1130.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (255, NULL, NULL, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 249, '957.6271', '3.0000', 1, '517.1186', 5, '18.0000%', NULL, NULL, NULL, '3390.0000', '0.0000', '2018-10-18', 'received', '1130.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (256, NULL, NULL, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 250, '957.6271', '6.0000', 1, '1034.2373', 5, '18.0000%', NULL, NULL, NULL, '6780.0000', '0.0000', '2018-10-18', 'received', '1130.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (257, NULL, NULL, 86, 'JI-M-IBLT-0046', 'JI Italian L Belt', 251, '1000.0000', '24.0000', 1, '4320.0000', 5, '18.0000%', NULL, NULL, NULL, '28320.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (258, NULL, NULL, 87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 252, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (259, NULL, NULL, 87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 253, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (260, NULL, NULL, 87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 254, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (261, NULL, NULL, 87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 255, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (262, NULL, NULL, 88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 256, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (263, NULL, NULL, 88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 257, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (264, NULL, NULL, 88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 258, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (265, NULL, NULL, 88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 259, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (266, NULL, NULL, 89, 'JI-M-IBLT-0049', 'JI Italian L Belt', 260, '1000.0000', '8.0000', 1, '1440.0000', 5, '18.0000%', NULL, NULL, NULL, '9440.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (267, NULL, NULL, 90, 'JI-M-IBLT-0050', 'JI Italian L Belt', 261, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (268, NULL, NULL, 90, 'JI-M-IBLT-0050', 'JI Italian L Belt', 262, '1000.0000', '3.0000', 1, '540.0000', 5, '18.0000%', NULL, NULL, NULL, '3540.0000', '0.0000', '2018-10-18', 'received', '1180.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (269, NULL, NULL, 91, 'JI-M-IBLT-0051', 'JI Italian L Belt', 263, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '0.0000', '2018-10-18', 'received', '1050.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (270, NULL, NULL, 91, 'JI-M-IBLT-0051', 'JI Italian L Belt', 264, '889.8305', '18.0000', 1, '2883.0508', 5, '18.0000%', NULL, NULL, NULL, '18900.0000', '0.0000', '2018-10-18', 'received', '1050.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (271, NULL, NULL, 91, 'JI-M-IBLT-0051', 'JI Italian L Belt', 265, '889.8305', '18.0000', 1, '2883.0508', 5, '18.0000%', NULL, NULL, NULL, '18900.0000', '0.0000', '2018-10-18', 'received', '1050.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (272, NULL, NULL, 91, 'JI-M-IBLT-0051', 'JI Italian L Belt', 266, '889.8305', '18.0000', 1, '2883.0508', 5, '18.0000%', NULL, NULL, NULL, '18900.0000', '0.0000', '2018-10-18', 'received', '1050.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (273, NULL, NULL, 91, 'JI-M-IBLT-0051', 'JI Italian L Belt', 267, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '0.0000', '2018-10-18', 'received', '1050.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (274, NULL, NULL, 92, 'JI-M-LB-0001', 'JI Lock Belt', 268, '838.9831', '24.0000', 1, '3624.4068', 5, '18.0000%', NULL, NULL, NULL, '23760.0000', '6.0000', '2018-10-18', 'received', '990.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (275, NULL, NULL, 93, 'JI-M-LB-0002', 'JI Lock Belt', 269, '838.9831', '12.0000', 1, '1812.2034', 5, '18.0000%', NULL, NULL, NULL, '11880.0000', '0.0000', '2018-10-18', 'received', '990.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (276, NULL, NULL, 94, 'JI-M-LB-0003', 'JI Lock Belt', 270, '838.9831', '12.0000', 1, '1812.2034', 5, '18.0000%', NULL, NULL, NULL, '11880.0000', '0.0000', '2018-10-18', 'received', '990.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (277, NULL, NULL, 95, 'JI-M-LB-0004', 'JI Lock Belt', 271, '923.7288', '54.0000', 1, '8978.6441', 5, '18.0000%', NULL, NULL, NULL, '58860.0000', '54.0000', '2018-10-18', 'received', '1090.0000', NULL, '54.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (278, NULL, NULL, 95, 'JI-M-LB-0004', 'JI Lock Belt', 272, '923.7288', '18.0000', 1, '2992.8814', 5, '18.0000%', NULL, NULL, NULL, '19620.0000', '18.0000', '2018-10-18', 'received', '1090.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (279, NULL, NULL, 96, 'JI-M-IBLT-0052', 'JI Italian L Belt', 273, '1084.7458', '12.0000', 1, '2343.0508', 5, '18.0000%', NULL, NULL, NULL, '15360.0000', '0.0000', '2018-10-18', 'received', '1280.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (280, NULL, NULL, 96, 'JI-M-IBLT-0052', 'JI Italian L Belt', 274, '1084.7458', '12.0000', 1, '2343.0508', 5, '18.0000%', NULL, NULL, NULL, '15360.0000', '0.0000', '2018-10-18', 'received', '1280.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (281, NULL, NULL, 97, 'JI-M-IEL-0002', 'JI Italian Ltd edition ', 275, '1042.3729', '12.0000', 1, '2251.5254', 5, '18.0000%', NULL, NULL, NULL, '14760.0000', '0.0000', '2018-10-18', 'received', '1230.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (282, NULL, NULL, 97, 'JI-M-IEL-0002', 'JI Italian Ltd edition ', 276, '1042.3729', '6.0000', 1, '1125.7627', 5, '18.0000%', NULL, NULL, NULL, '7380.0000', '0.0000', '2018-10-18', 'received', '1230.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (283, NULL, NULL, 98, 'JI-M-IBLT-0053', 'JI Italian L Belt', 277, '889.8305', '9.0000', 1, '1441.5254', 5, '18.0000%', NULL, NULL, NULL, '9450.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (284, NULL, NULL, 99, 'JI-M-IBLT-0054', 'JI Italian L Belt', 278, '889.8305', '9.0000', 1, '1441.5254', 5, '18.0000%', NULL, NULL, NULL, '9450.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (285, NULL, NULL, 100, 'JI-M-IBLT-0055', 'JI Italian L Belt', 279, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (286, NULL, NULL, 101, 'JI-M-IBLT-0056', 'JI Italian L Belt', 280, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (287, NULL, NULL, 101, 'JI-M-IBLT-0056', 'JI Italian L Belt', 281, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (288, NULL, NULL, 102, 'JI-M-IBLT-0057', 'JI Italian L Belt', 282, '889.8305', '8.0000', 1, '1281.3559', 5, '18.0000%', NULL, NULL, NULL, '8400.0000', '2.0000', '2018-10-19', 'received', '1050.0000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (289, NULL, NULL, 103, 'JI-M-IBLT-0058', 'JI Italian L Belt', 283, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (290, NULL, NULL, 104, 'JI-M-IBLT-0059', 'JI Italian L Belt', 284, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (291, NULL, NULL, 104, 'JI-M-IBLT-0059', 'JI Italian L Belt', 285, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (292, NULL, NULL, 105, 'JI-M-IBLT-0060', 'JI Italian L Belt', 286, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (293, NULL, NULL, 105, 'JI-M-IBLT-0060', 'JI Italian L Belt', 287, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (294, NULL, NULL, 106, 'JI-M-IBLT-0061', 'JI Italian L Belt', 288, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (295, NULL, NULL, 106, 'JI-M-IBLT-0061', 'JI Italian L Belt', 289, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (296, NULL, NULL, 107, 'JI-M-IBLT-0062', 'JI Italian L Belt', 290, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (297, NULL, NULL, 107, 'JI-M-IBLT-0062', 'JI Italian L Belt', 291, '889.8305', '3.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '0.0000', '2018-10-19', 'received', '1050.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (298, NULL, NULL, 108, 'JI-M-LB-0004', 'Ji Lock Belt', 292, '923.7288', '9.0000', 1, '1496.4407', 5, '18.0000%', NULL, NULL, NULL, '9810.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (299, NULL, NULL, 108, 'JI-M-LB-0004', 'Ji Lock Belt', 293, '923.7288', '3.0000', 1, '498.8136', 5, '18.0000%', NULL, NULL, NULL, '3270.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (300, NULL, NULL, 109, 'JI-M-LB-0005', 'JI Lock Belt', 294, '923.7288', '3.0000', 1, '498.8136', 5, '18.0000%', NULL, NULL, NULL, '3270.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (301, NULL, NULL, 109, 'JI-M-LB-0005', 'JI Lock Belt', 295, '923.7288', '12.0000', 1, '1995.2542', 5, '18.0000%', NULL, NULL, NULL, '13080.0000', '2.0000', '2018-10-19', 'received', '1090.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (302, NULL, NULL, 110, 'JI-M-LB-0006', 'JI Lock Belt', 296, '923.7288', '12.0000', 1, '1995.2542', 5, '18.0000%', NULL, NULL, NULL, '13080.0000', '2.0000', '2018-10-19', 'received', '1090.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (303, NULL, NULL, 110, 'JI-M-LB-0006', 'JI Lock Belt', 297, '923.7288', '3.0000', 1, '498.8136', 5, '18.0000%', NULL, NULL, NULL, '3270.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (304, NULL, NULL, 111, 'JI-M-LB-0007', 'JI Lock Belt', 298, '923.7288', '6.0000', 1, '997.6271', 5, '18.0000%', NULL, NULL, NULL, '6540.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (305, NULL, NULL, 111, 'JI-M-LB-0007', 'JI Lock Belt', 299, '923.7288', '3.0000', 1, '498.8136', 5, '18.0000%', NULL, NULL, NULL, '3270.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (306, NULL, NULL, 112, 'JI-M-LB-0008', 'JI Lock Belt', 300, '923.7288', '9.0000', 1, '1496.4407', 5, '18.0000%', NULL, NULL, NULL, '9810.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (307, NULL, NULL, 112, 'JI-M-LB-0008', 'JI Lock Belt', 301, '923.7288', '3.0000', 1, '498.8136', 5, '18.0000%', NULL, NULL, NULL, '3270.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (308, NULL, NULL, 113, 'JI-M-LB-0009', 'JI Lock Belt', 302, '923.7288', '3.0000', 1, '498.8136', 5, '18.0000%', NULL, NULL, NULL, '3270.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (309, NULL, NULL, 113, 'JI-M-LB-0009', 'JI Lock Belt', 303, '923.7288', '6.0000', 1, '997.6271', 5, '18.0000%', NULL, NULL, NULL, '6540.0000', '0.0000', '2018-10-19', 'received', '1090.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (310, NULL, NULL, 114, 'JI-K-KBLT-0001', 'JI Kids Belt', 304, '372.8814', '2.0000', 1, '134.2373', 5, '18.0000%', NULL, NULL, NULL, '880.0000', '2.0000', '2018-10-19', 'received', '440.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (311, NULL, NULL, 114, 'JI-K-KBLT-0001', 'JI Kids Belt', 305, '372.8814', '8.0000', 1, '536.9492', 5, '18.0000%', NULL, NULL, NULL, '3520.0000', '8.0000', '2018-10-19', 'received', '440.0000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (312, NULL, NULL, 114, 'JI-K-KBLT-0001', 'JI Kids Belt', 306, '372.8814', '5.0000', 1, '335.5932', 5, '18.0000%', NULL, NULL, NULL, '2200.0000', '5.0000', '2018-10-19', 'received', '440.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (313, NULL, NULL, 114, 'JI-K-KBLT-0001', 'JI Kids Belt', 307, '372.8814', '1.0000', 1, '67.1186', 5, '18.0000%', NULL, NULL, NULL, '440.0000', '1.0000', '2018-10-19', 'received', '440.0000', NULL, '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (314, NULL, NULL, 115, 'JI-B-BBLT-0001', 'JI Boy Belt', 308, '372.8814', '2.0000', 1, '134.2373', 5, '18.0000%', NULL, NULL, NULL, '880.0000', '0.0000', '2018-10-19', 'received', '440.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (315, NULL, NULL, 115, 'JI-B-BBLT-0001', 'JI Boy Belt', 309, '372.8814', '4.0000', 1, '268.4746', 5, '18.0000%', NULL, NULL, NULL, '1760.0000', '2.0000', '2018-10-19', 'received', '440.0000', NULL, '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (316, NULL, NULL, 115, 'JI-B-BBLT-0001', 'JI Boy Belt', 310, '372.8814', '4.0000', 1, '268.4746', 5, '18.0000%', NULL, NULL, NULL, '1760.0000', '4.0000', '2018-10-19', 'received', '440.0000', NULL, '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (317, NULL, NULL, 115, 'JI-B-BBLT-0001', 'JI Boy Belt', 311, '372.8814', '5.0000', 1, '335.5932', 5, '18.0000%', NULL, NULL, NULL, '2200.0000', '0.0000', '2018-10-19', 'received', '440.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (318, NULL, NULL, 115, 'JI-B-BBLT-0001', 'JI Boy Belt', 312, '372.8814', '1.0000', 1, '67.1186', 5, '18.0000%', NULL, NULL, NULL, '440.0000', '1.0000', '2018-10-19', 'received', '440.0000', NULL, '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (319, NULL, NULL, 116, 'JI-B-BBLT-0002', 'JI Boy Belt', 313, '440.0000', '5.0000', 1, '396.0000', 5, '18.0000%', NULL, NULL, NULL, '2596.0000', '2.0000', '2018-10-19', 'received', '519.2000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (320, NULL, NULL, 116, 'JI-B-BBLT-0002', 'JI Boy Belt', 314, '440.0000', '1.0000', 1, '79.2000', 5, '18.0000%', NULL, NULL, NULL, '519.2000', '1.0000', '2018-10-19', 'received', '519.2000', NULL, '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (321, NULL, NULL, 116, 'JI-B-BBLT-0002', 'JI Boy Belt', 315, '440.0000', '2.0000', 1, '158.4000', 5, '18.0000%', NULL, NULL, NULL, '1038.4000', '0.0000', '2018-10-19', 'received', '519.2000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (322, NULL, NULL, 116, 'JI-B-BBLT-0002', 'JI Boy Belt', 316, '440.0000', '2.0000', 1, '158.4000', 5, '18.0000%', NULL, NULL, NULL, '1038.4000', '2.0000', '2018-10-19', 'received', '519.2000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (323, NULL, NULL, 116, 'JI-B-BBLT-0002', 'JI Boy Belt', 317, '440.0000', '8.0000', 1, '633.6000', 5, '18.0000%', NULL, NULL, NULL, '4153.6000', '5.0000', '2018-10-19', 'received', '519.2000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (324, NULL, NULL, 117, 'JI-B-BBLT-0003', 'JI Beby Belt', 318, '372.8814', '4.0000', 1, '268.4746', 5, '18.0000%', NULL, NULL, NULL, '1760.0000', '4.0000', '2018-10-19', 'received', '440.0000', NULL, '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (325, NULL, NULL, 117, 'JI-B-BBLT-0003', 'JI Beby Belt', 319, '372.8814', '2.0000', 1, '134.2373', 5, '18.0000%', NULL, NULL, NULL, '880.0000', '1.0000', '2018-10-19', 'received', '440.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (326, NULL, NULL, 117, 'JI-B-BBLT-0003', 'JI Beby Belt', 320, '372.8814', '4.0000', 1, '268.4746', 5, '18.0000%', NULL, NULL, NULL, '1760.0000', '0.0000', '2018-10-19', 'received', '440.0000', NULL, '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (327, NULL, NULL, 117, 'JI-B-BBLT-0003', 'JI Beby Belt', 321, '372.8814', '2.0000', 1, '134.2373', 5, '18.0000%', NULL, NULL, NULL, '880.0000', '2.0000', '2018-10-19', 'received', '440.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (328, NULL, NULL, 118, 'JI-B-BBLT-0004', 'JI Boy Belt', 322, '372.8814', '4.0000', 1, '268.4746', 5, '18.0000%', NULL, NULL, NULL, '1760.0000', '0.0000', '2018-10-19', 'received', '440.0000', NULL, '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (329, NULL, NULL, 118, 'JI-B-BBLT-0004', 'JI Boy Belt', 323, '372.8814', '1.0000', 1, '67.1186', 5, '18.0000%', NULL, NULL, NULL, '440.0000', '0.0000', '2018-10-19', 'received', '440.0000', NULL, '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (330, NULL, NULL, 118, 'JI-B-BBLT-0004', 'JI Boy Belt', 324, '372.8814', '3.0000', 1, '201.3559', 5, '18.0000%', NULL, NULL, NULL, '1320.0000', '2.0000', '2018-10-19', 'received', '440.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (331, NULL, NULL, 119, 'JI-M-IBLT-0063', 'JI Italian L Belt', 325, '754.2373', '12.0000', 1, '1629.1525', 5, '18.0000%', NULL, NULL, NULL, '10680.0000', '0.0000', '2018-10-19', 'received', '890.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (332, NULL, NULL, 120, 'JI-M-IBLT-0064', 'JI Italian L Belt', 326, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-19', 'received', '850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (333, NULL, NULL, 121, 'JI-M-IBLT-0065', 'JI Italian L Belt', 327, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-19', 'received', '850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (334, NULL, NULL, 122, 'JI-M-IBLT-0066', 'JI Italian L Belt', 328, '838.9831', '5.0000', 1, '755.0847', 5, '18.0000%', NULL, NULL, NULL, '4950.0000', '0.0000', '2018-10-19', 'received', '990.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (335, NULL, NULL, 123, 'JI-M-IBLT-0067', 'JI Italian L Belt', 329, '838.9831', '3.0000', 1, '453.0508', 5, '18.0000%', NULL, NULL, NULL, '2970.0000', '0.0000', '2018-10-19', 'received', '990.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (336, NULL, NULL, 124, 'JI-M-IBLT-0068', 'JI Italian L Belt', 330, '838.9831', '2.0000', 1, '302.0339', 5, '18.0000%', NULL, NULL, NULL, '1980.0000', '0.0000', '2018-10-19', 'received', '990.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (337, NULL, NULL, 125, 'JI-M-IBLT-0069', 'JI Italian L Belt', 331, '838.9831', '2.0000', 1, '302.0339', 5, '18.0000%', NULL, NULL, NULL, '1980.0000', '0.0000', '2018-10-19', 'received', '990.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (338, NULL, NULL, 126, 'JI-M-IBLT-0070', 'JI Italian L Belt', 332, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-19', 'received', '850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (339, NULL, NULL, 127, 'JI-M-IBLT-0071', 'JI Italian L Belt', 333, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-19', 'received', '850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (340, NULL, NULL, 128, 'JI-B-BBLT-0005', 'JI Boy Belt', 334, '330.5085', '24.0000', 1, '1427.7966', 5, '18.0000%', NULL, NULL, NULL, '9360.0000', '24.0000', '2018-10-20', 'received', '390.0000', NULL, '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (341, NULL, NULL, 128, 'JI-B-BBLT-0005', 'JI Boy Belt', 335, '330.5085', '12.0000', 1, '713.8983', 5, '18.0000%', NULL, NULL, NULL, '4680.0000', '12.0000', '2018-10-20', 'received', '390.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (342, NULL, NULL, 128, 'JI-B-BBLT-0005', 'JI Boy Belt', 336, '330.5085', '12.0000', 1, '713.8983', 5, '18.0000%', NULL, NULL, NULL, '4680.0000', '12.0000', '2018-10-20', 'received', '390.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (343, NULL, NULL, 128, 'JI-B-BBLT-0005', 'JI Boy Belt', 337, '330.5085', '12.0000', 1, '713.8983', 5, '18.0000%', NULL, NULL, NULL, '4680.0000', '12.0000', '2018-10-20', 'received', '390.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (344, NULL, NULL, 129, 'JI-B-BBLT-0006', 'JI Boy Belt', 338, '330.5085', '18.0000', 1, '1070.8475', 5, '18.0000%', NULL, NULL, NULL, '7020.0000', '18.0000', '2018-10-20', 'received', '390.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (345, NULL, NULL, 129, 'JI-B-BBLT-0006', 'JI Boy Belt', 339, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (346, NULL, NULL, 129, 'JI-B-BBLT-0006', 'JI Boy Belt', 340, '330.5085', '18.0000', 1, '1070.8475', 5, '18.0000%', NULL, NULL, NULL, '7020.0000', '18.0000', '2018-10-20', 'received', '390.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (347, NULL, NULL, 129, 'JI-B-BBLT-0006', 'JI Boy Belt', 341, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (348, NULL, NULL, 129, 'JI-B-BBLT-0006', 'JI Boy Belt', 342, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (349, NULL, NULL, 129, 'JI-B-BBLT-0006', 'JI Boy Belt', 343, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (350, NULL, NULL, 130, 'JI-B-BBLT-0007', 'JI Baby Belt', 344, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (351, NULL, NULL, 130, 'JI-B-BBLT-0007', 'JI Baby Belt', 345, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (352, NULL, NULL, 130, 'JI-B-BBLT-0007', 'JI Baby Belt', 346, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (353, NULL, NULL, 130, 'JI-B-BBLT-0007', 'JI Baby Belt', 347, '330.5085', '12.0000', 1, '713.8983', 5, '18.0000%', NULL, NULL, NULL, '4680.0000', '12.0000', '2018-10-20', 'received', '390.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (354, NULL, NULL, 130, 'JI-B-BBLT-0007', 'JI Baby Belt', 348, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (355, NULL, NULL, 130, 'JI-B-BBLT-0007', 'JI Baby Belt', 349, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (356, NULL, NULL, 131, 'JI-B-BBLT-0007', 'JI Boy Belt', 350, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (357, NULL, NULL, 131, 'JI-B-BBLT-0007', 'JI Boy Belt', 351, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (358, NULL, NULL, 131, 'JI-B-BBLT-0007', 'JI Boy Belt', 352, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (359, NULL, NULL, 131, 'JI-B-BBLT-0007', 'JI Boy Belt', 353, '330.5085', '12.0000', 1, '713.8983', 5, '18.0000%', NULL, NULL, NULL, '4680.0000', '12.0000', '2018-10-20', 'received', '390.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (360, NULL, NULL, 131, 'JI-B-BBLT-0007', 'JI Boy Belt', 354, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (361, NULL, NULL, 131, 'JI-B-BBLT-0007', 'JI Boy Belt', 355, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (362, NULL, NULL, 132, 'JI-B-BBLT-0008', 'JI Boy Belt', 356, '330.5085', '18.0000', 1, '1070.8475', 5, '18.0000%', NULL, NULL, NULL, '7020.0000', '18.0000', '2018-10-20', 'received', '390.0000', NULL, '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (363, NULL, NULL, 132, 'JI-B-BBLT-0008', 'JI Boy Belt', 357, '330.5085', '12.0000', 1, '713.8983', 5, '18.0000%', NULL, NULL, NULL, '4680.0000', '12.0000', '2018-10-20', 'received', '390.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (364, NULL, NULL, 132, 'JI-B-BBLT-0008', 'JI Boy Belt', 358, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (365, NULL, NULL, 133, 'JI-B-BBLT-0009', 'JI Baby Belt', 359, '330.5085', '6.0000', 1, '356.9492', 5, '18.0000%', NULL, NULL, NULL, '2340.0000', '6.0000', '2018-10-20', 'received', '390.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (366, NULL, NULL, 134, 'JI-M-ILB-0008', 'JI Indian L Belt', 360, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-20', 'received', '500.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (367, NULL, NULL, 135, 'JI-M-ILB-0009', 'JI Indian L Belt', 361, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-20', 'received', '500.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (368, NULL, NULL, 135, 'JI-M-ILB-0009', 'JI Indian L Belt', 362, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-20', 'received', '500.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (369, NULL, NULL, 134, 'JI-M-ILB-0008', 'JI Indian L Belt', 363, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-20', 'received', '500.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (370, NULL, NULL, 136, 'JI-M-ILB-0010', 'JI Indian L Belt', 364, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-20', 'received', '500.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (371, NULL, NULL, 136, 'JI-M-ILB-0010', 'JI Indian L Belt', 365, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-20', 'received', '500.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (372, NULL, NULL, 137, 'JI-M-ILB-0011', 'JI Indian L Belt', 366, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-20', 'received', '500.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (373, NULL, NULL, 137, 'JI-M-ILB-0011', 'JI Indian L Belt', 367, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-20', 'received', '500.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (374, NULL, NULL, 138, 'JI-M-IEL_0002', 'JI Italian Ltd edition ', 368, '1398.3051', '12.0000', 1, '3020.3390', 5, '18.0000%', NULL, NULL, NULL, '19800.0000', '0.0000', '2018-10-20', 'received', '1650.0000', NULL, '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (375, NULL, NULL, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 369, '889.8305', '6.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-10-21', 'received', '1050.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (376, NULL, NULL, 139, 'JI-M-IBLT-0072', 'JI Italian L Belt', 370, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-22', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (377, NULL, NULL, 139, 'JI-M-IBLT-0072', 'JI Italian L Belt', 371, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-22', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (378, NULL, NULL, 139, 'JI-M-IBLT-0072', 'JI Italian L Belt', 372, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-22', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (379, NULL, NULL, 140, 'JI-M-IBLT-0073', 'JI Italian L Belt', 373, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-22', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (380, NULL, NULL, 140, 'JI-M-IBLT-0073', 'JI Italian L Belt', 374, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-22', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (381, NULL, NULL, 140, 'JI-M-IBLT-0073', 'JI Italian L Belt', 375, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '0.0000', '2018-10-22', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (382, NULL, NULL, 141, 'JI-M-IBLT-0074', 'JI Italian L Belt', 376, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '6.0000', '2018-10-23', 'received', '850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (383, NULL, NULL, 141, 'JI-M-IBLT-0074', 'JI Italian L Belt', 377, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '6.0000', '2018-10-23', 'received', '850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (384, NULL, NULL, 142, 'JI-M-IBLT-0075', 'JI Italian L Belt', 378, '805.0847', '60.0000', 1, '8694.9153', 5, '18.0000%', NULL, NULL, NULL, '57000.0000', '32.0000', '2018-10-23', 'received', '950.0000', NULL, '60.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (385, NULL, NULL, 143, 'JI-M-IBLT-0074', 'JI Italian L Belt', 379, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-23', 'received', '850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (386, NULL, NULL, 143, 'JI-M-IBLT-0074', 'JI Italian L Belt', 380, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-23', 'received', '850.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (387, NULL, NULL, 42, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (388, NULL, NULL, 43, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (389, NULL, NULL, 44, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (390, NULL, NULL, 45, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (391, NULL, NULL, 134, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (392, NULL, NULL, 14, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '24.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (393, NULL, NULL, 144, 'JI-M-CB-0001', 'JI Cotton Belt', 381, '762.7119', '10.0000', 1, '1372.8814', 5, '18.0000%', NULL, NULL, NULL, '9000.0000', '0.0000', '2018-10-24', 'received', '900.0000', NULL, '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (394, NULL, NULL, 144, 'JI-M-CB-0001', 'JI Cotton Belt', 382, '762.7119', '10.0000', 1, '1372.8814', 5, '18.0000%', NULL, NULL, NULL, '9000.0000', '0.0000', '2018-10-24', 'received', '900.0000', NULL, '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (395, NULL, NULL, 145, 'JI-M-IEL-0004', 'Italian Limited edition ', 383, '1262.7119', '5.0000', 1, '1136.4407', 5, '18.0000%', NULL, NULL, NULL, '7450.0000', '0.0000', '2018-10-24', 'received', '1490.0000', NULL, '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (396, NULL, NULL, 146, 'JI-M-IEL-0005', 'Italian Limited edition', 384, '1262.7119', '3.0000', 1, '681.8644', 5, '18.0000%', NULL, NULL, NULL, '4470.0000', '0.0000', '2018-10-24', 'received', '1490.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (397, NULL, NULL, 147, 'JI-M-IEL-0006', 'Italian Limited edition', 385, '1686.4407', '10.0000', 1, '3035.5932', 5, '18.0000%', NULL, NULL, NULL, '19900.0000', '0.0000', '2018-10-24', 'received', '1990.0000', NULL, '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (398, NULL, NULL, 148, 'JI-M-IB-0001', 'JI Imported Belt', 386, '1152.5424', '33.0000', 1, '6846.1017', 5, '18.0000%', NULL, NULL, NULL, '44880.0000', '0.0000', '2018-10-24', 'received', '1360.0000', NULL, '33.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (399, NULL, NULL, 149, 'JI-M-IEL-0007', 'JI Italian Limited edition', 387, '1059.3220', '2.0000', 1, '381.3559', 5, '18.0000%', NULL, NULL, NULL, '2500.0000', '0.0000', '2018-10-24', 'received', '1250.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (400, NULL, NULL, 150, 'JI-W-WLBLT-0001', 'JI  Leather Belt', 388, '635.5932', '8.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '2.0000', '2018-10-24', 'received', '750.0000', NULL, '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (401, NULL, NULL, 151, 'JI-W-WLBLT-0002', 'JI Leather Belt', 389, '720.3390', '3.0000', 1, '388.9831', 5, '18.0000%', NULL, NULL, NULL, '2550.0000', '0.0000', '2018-10-24', 'received', '850.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (402, NULL, NULL, 152, 'JI-W-WLBLT-0003', 'JI Leather Belt', 390, '762.7119', '2.0000', 1, '274.5763', 5, '18.0000%', NULL, NULL, NULL, '1800.0000', '0.0000', '2018-10-24', 'received', '900.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (403, NULL, NULL, 153, 'JI-W-WLBLT-0004', 'JI Leather Belt', 391, '805.0847', '3.0000', 1, '434.7458', 5, '18.0000%', NULL, NULL, NULL, '2850.0000', '0.0000', '2018-10-24', 'received', '950.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (404, NULL, NULL, 154, 'JI-W-WLBLT-0005', 'JI Leather Belt', 392, '805.0847', '6.0000', 1, '869.4915', 5, '18.0000%', NULL, NULL, NULL, '5700.0000', '0.0000', '2018-10-24', 'received', '950.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (405, NULL, NULL, 155, 'JI-W-WLBLT-0006', 'JI Leather Belt', 393, '720.3390', '3.0000', 1, '388.9831', 5, '18.0000%', NULL, NULL, NULL, '2550.0000', '0.0000', '2018-10-24', 'received', '850.0000', NULL, '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (406, NULL, NULL, 156, 'JI-W-WLBLT-0007', 'JI Leather Belt', 394, '720.3390', '2.0000', 1, '259.3220', 5, '18.0000%', NULL, NULL, NULL, '1700.0000', '0.0000', '2018-10-24', 'received', '850.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (407, NULL, NULL, 157, 'JI-W-WLBLT-0008', 'JI Leather Belt', 395, '635.5932', '4.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '0.0000', '2018-10-24', 'received', '750.0000', NULL, '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (408, NULL, NULL, 158, 'JI-W-WLBLT-0009', 'JI Leather Belt', 396, '466.1017', '2.0000', 1, '167.7966', 5, '18.0000%', NULL, NULL, NULL, '1100.0000', '9.0000', '2018-10-24', 'received', '550.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (409, NULL, NULL, 159, 'JI-W-WLBLT-0010', 'JI Leather Belt', 397, '533.8983', '10.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '12.0000', '2018-10-24', 'received', '630.0000', NULL, '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (410, NULL, NULL, 160, 'JI-W-WLBLT-0011', 'JI Leather Belt', 398, '466.1017', '15.0000', 1, '1258.4746', 5, '18.0000%', NULL, NULL, NULL, '8250.0000', '11.0000', '2018-10-24', 'received', '550.0000', NULL, '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (411, NULL, NULL, 161, 'JI-W-WLBLT-0012', 'JI Leather Belt', 399, '576.2712', '15.0000', 1, '1555.9322', 5, '18.0000%', NULL, NULL, NULL, '10200.0000', '7.0000', '2018-10-24', 'received', '680.0000', NULL, '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (412, NULL, NULL, 162, 'JI-W-WLBLT-0013', 'JI Leather Belt', 400, '822.0339', '6.0000', 1, '887.7966', 5, '18.0000%', NULL, NULL, NULL, '5820.0000', '0.0000', '2018-10-24', 'received', '970.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (416, NULL, NULL, 164, 'JI-M-ISM-0003', 'JI Italian Steel BKL', 404, '1567.7966', '210.0000', 1, '59262.7119', 5, '18.0000%', NULL, NULL, NULL, '388500.0000', '210.0000', '2018-10-24', 'received', '1850.0000', NULL, '210.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (417, NULL, NULL, 165, 'JI-M-ISM-0003', 'JI Italian Steel BKL', 405, '1567.7966', '210.0000', 1, '59262.7119', 5, '18.0000%', NULL, NULL, NULL, '388500.0000', '138.0000', '2018-10-24', 'received', '1850.0000', NULL, '210.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (418, NULL, NULL, 166, 'JI-M-IBLT-0076', 'JI Italian L Belt', 406, '1059.3220', '21.0000', 1, '4004.2373', 5, '18.0000%', NULL, NULL, NULL, '26250.0000', '0.0000', '2018-10-24', 'received', '1250.0000', NULL, '21.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (419, NULL, NULL, 166, 'JI-M-IBLT-0076', 'JI Italian L Belt', 407, '1059.3220', '15.0000', 1, '2860.1695', 5, '18.0000%', NULL, NULL, NULL, '18750.0000', '0.0000', '2018-10-24', 'received', '1250.0000', NULL, '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (423, NULL, NULL, 167, 'JI-M-IBLT-0076-26', 'JI Italian L Belt-HONEY', NULL, '720.3390', '12.0000', 1, '1555.9322', 5, '18.0000%', NULL, NULL, NULL, '10200.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (424, NULL, NULL, 168, 'JI-M-IBLT-0078-36', 'JI Italian L Belt-BALI', NULL, '720.3390', '12.0000', 1, '1555.9322', 5, '18.0000%', NULL, NULL, NULL, '10200.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (425, NULL, NULL, 169, 'JI-M-IBLT-0079-23', 'JI Italian L Belt-MAGIC', NULL, '720.3390', '12.0000', 1, '1555.9322', 5, '18.0000%', NULL, NULL, NULL, '10200.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (426, NULL, NULL, 170, 'JI-M-IBLT-0080-57', 'JI Italian L Belt-CROCO', NULL, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (427, NULL, NULL, 171, 'JI-M-IBLT-0081-58', 'JI Italian L Belt-PLAIN', NULL, '635.5932', '6.0000', 1, '686.4407', 5, '18.0000%', NULL, NULL, NULL, '4500.0000', '0.0000', '2018-10-25', 'received', '750.0000', '750.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (428, NULL, NULL, 172, 'JI-M-IBLT-0082-59', 'JI Italian L Belt-GRACE', NULL, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (429, NULL, NULL, 173, 'JI-M-IBLT-0083-48', 'JI Italian L Belt-IMPORTED', NULL, '750.0000', '5.0000', 1, '0.0000', 1, '0.0000', NULL, NULL, NULL, '3750.0000', '0.0000', '2018-10-25', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (430, NULL, NULL, 174, 'JI-M-IBLT-0084-48', 'JI Italian L Belt-TOBACCO', NULL, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (431, NULL, NULL, 175, 'JI-M-IBLT-0085-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '6.0000', 1, '686.4407', 5, '18.0000%', NULL, NULL, NULL, '4500.0000', '0.0000', '2018-10-25', 'received', '750.0000', '750.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (432, NULL, NULL, 176, 'JI-M-IBLT-0086-48', 'JI Italian L Belt-IMPORTED', NULL, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (433, NULL, NULL, 177, 'JI-M-IBLT-0087-48', 'JI Italian L Belt-IMPORTED', NULL, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (434, NULL, NULL, 178, 'JI-M-IBLT-0088-0048', 'JI Italian L Belt-IMPORTED', NULL, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (435, NULL, NULL, 179, 'JI-M-IBLT-0089-48', 'JI Italian L Belt-IMPORTED', NULL, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '0.0000', '2018-10-25', 'received', '850.0000', '850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (436, NULL, NULL, 180, 'JI-M-IBLT-0090-48', 'JI Italian L Belt-IMPORTED', NULL, '838.9831', '12.0000', 1, '1812.2034', 5, '18.0000%', NULL, NULL, NULL, '11880.0000', '0.0000', '2018-10-25', 'received', '990.0000', '990.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (437, NULL, NULL, 181, 'JI-M-IBLT-0091-48', 'JI Italian L Belt-IMPORTED', NULL, '805.0847', '4.0000', 1, '579.6610', 5, '18.0000%', NULL, NULL, NULL, '3800.0000', '0.0000', '2018-10-25', 'received', '950.0000', '950.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (438, NULL, NULL, 182, 'JI-M-IBLT-0092-48', 'JI Italian L Belt-IMPORTED', NULL, '805.0847', '3.0000', 1, '434.7458', 5, '18.0000%', NULL, NULL, NULL, '2850.0000', '0.0000', '2018-10-25', 'received', '950.0000', '950.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (439, NULL, NULL, 183, 'JI-M-IBLT-0093-48', 'JI Italian L Belt-IMPORTED', NULL, '805.0847', '2.0000', 1, '289.8305', 5, '18.0000%', NULL, NULL, NULL, '1900.0000', '0.0000', '2018-10-25', 'received', '950.0000', '950.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (442, NULL, NULL, 187, 'G7-M-OB-000003-1', 'G7 Office Bag-BLACK', NULL, '2415.2542', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-25', 'received', '2850.0000', '2850.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (443, NULL, NULL, 188, 'G7-M-OB-000003-4', 'G7 Office Bag-TAN', NULL, '2415.2542', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-25', 'received', '2850.0000', '2850.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (444, NULL, NULL, 190, 'G7-M-OB-000004-1', 'G7 Office Bag-BLACK', NULL, '3262.7119', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-25', 'received', '3850.0000', '3850.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (445, NULL, NULL, 191, 'G7-M-OB-000004-4', 'G7 Office Bag-TAN', NULL, '3262.7119', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-25', 'received', '3850.0000', '3850.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (452, 3, NULL, 186, 'G7-M-OB-000003-3', 'G7 Office Bag-BROWN', NULL, '1450.0000', '10.0000', 1, '2610.0000', 5, '18%', '0', '0.0000', NULL, '17110.0000', '4.0000', '2018-10-25', 'received', '1711.0000', '1711.0000', '10.0000', NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '2610.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (453, 3, NULL, 187, 'G7-M-OB-000003-1', 'G7 Office Bag-BLACK', NULL, '1450.0000', '5.0000', 1, '1305.0000', 5, '18%', '0', '0.0000', NULL, '8555.0000', '1.0000', '2018-10-25', 'received', '1711.0000', '1711.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '1305.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (454, 3, NULL, 188, 'G7-M-OB-000003-4', 'G7 Office Bag-TAN', NULL, '1450.0000', '5.0000', 1, '1305.0000', 5, '18%', '0', '0.0000', NULL, '8555.0000', '1.0000', '2018-10-25', 'received', '1711.0000', '1711.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '1305.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (455, 4, NULL, 189, 'G7-M-OB-000004-3', 'G7 Office Bag-BROWN', NULL, '1750.0000', '11.0000', 1, '3465.0000', 5, '18%', '0', '0.0000', NULL, '22715.0000', '8.0000', '2018-10-25', 'received', '2065.0000', '2065.0000', '11.0000', NULL, NULL, 2, 'PCS', '11.0000', '18%', '0.0000', '0.0000', '3465.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (456, 4, NULL, 190, 'G7-M-OB-000004-1', 'G7 Office Bag-BLACK', NULL, '1750.0000', '5.0000', 1, '1575.0000', 5, '18%', '0', '0.0000', NULL, '10325.0000', '2.0000', '2018-10-25', 'received', '2065.0000', '2065.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '1575.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (457, 4, NULL, 191, 'G7-M-OB-000004-4', 'G7 Office Bag-TAN', NULL, '1750.0000', '5.0000', 1, '1575.0000', 5, '18%', '0', '0.0000', NULL, '10325.0000', '2.0000', '2018-10-25', 'received', '2065.0000', '2065.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '1575.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (458, NULL, NULL, 192, 'JI-M-IBLT-0094-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '48.0000', 1, '5491.5254', 5, '18.0000%', NULL, NULL, NULL, '36000.0000', '48.0000', '2018-10-26', 'received', '750.0000', '750.0000', '48.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (459, NULL, NULL, 193, 'JI-M-IBLT-0095-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '42.0000', 1, '4805.0847', 5, '18.0000%', NULL, NULL, NULL, '31500.0000', '42.0000', '2018-10-26', 'received', '750.0000', '750.0000', '42.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (460, NULL, NULL, 194, 'JI-M-IBLT-0096-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '24.0000', 1, '2745.7627', 5, '18.0000%', NULL, NULL, NULL, '18000.0000', '14.0000', '2018-10-26', 'received', '750.0000', '750.0000', '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (461, NULL, NULL, 195, 'JI-M-IBLT-0097-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '48.0000', 1, '5491.5254', 5, '18.0000%', NULL, NULL, NULL, '36000.0000', '39.0000', '2018-10-26', 'received', '750.0000', '750.0000', '48.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (462, NULL, NULL, 196, 'JI-M-IBLT-0098-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '48.0000', 1, '5491.5254', 5, '18.0000%', NULL, NULL, NULL, '36000.0000', '48.0000', '2018-10-26', 'received', '750.0000', '750.0000', '48.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (463, NULL, NULL, 197, 'JI-M-IBLT-0099-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '36.0000', 1, '4118.6441', 5, '18.0000%', NULL, NULL, NULL, '27000.0000', '36.0000', '2018-10-26', 'received', '750.0000', '750.0000', '36.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (464, NULL, NULL, 198, 'JI-M-IBLT-0100-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '42.0000', 1, '4805.0847', 5, '18.0000%', NULL, NULL, NULL, '31500.0000', '42.0000', '2018-10-26', 'received', '750.0000', '750.0000', '42.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (465, NULL, NULL, 199, 'JI-M-IBLT-0101-48', 'JI Italian L Belt-IMPORTED', NULL, '635.5932', '24.0000', 1, '2745.7627', 5, '18.0000%', NULL, NULL, NULL, '18000.0000', '24.0000', '2018-10-26', 'received', '750.0000', '750.0000', '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (466, NULL, NULL, 200, 'G7-M-LWLT-0002-1', 'G7 Leather Wallet-BLACK', NULL, '381.3559', '3.0000', 1, '205.9322', 5, '18.0000%', NULL, NULL, NULL, '1350.0000', '0.0000', '2018-10-26', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (467, NULL, NULL, 201, 'G7-M-LWLT-0002-3', 'G7 Leather Wallet-BROWN', NULL, '381.3559', '3.0000', 1, '205.9322', 5, '18.0000%', NULL, NULL, NULL, '1350.0000', '0.0000', '2018-10-26', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (468, NULL, NULL, 202, 'G7-M-LWLT-0003-1', 'G7 Leather Wallet-BLACK', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (469, NULL, NULL, 203, 'G7-M-LWLT-0003-3', 'G7 Leather Wallet-BROWN', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (470, NULL, NULL, 204, 'G7-M-LWLT-0004-1', 'G7 Leather Wallet-BLACK', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (471, NULL, NULL, 205, 'G7-M-LWLT-0004-3', 'G7 Leather Wallet-BROWN', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (472, NULL, NULL, 206, 'G7-M-LWLT-0005-1', 'G7 Leather Wallet-BLACK', NULL, '500.0000', '3.0000', 1, '270.0000', 5, '18.0000%', NULL, NULL, NULL, '1770.0000', '0.0000', '2018-10-26', 'received', '590.0000', '590.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (473, NULL, NULL, 207, 'G7-M-LWLT-0005-3', 'G7 Leather Wallet-BROWN', NULL, '500.0000', '3.0000', 1, '270.0000', 5, '18.0000%', NULL, NULL, NULL, '1770.0000', '0.0000', '2018-10-26', 'received', '590.0000', '590.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (474, NULL, NULL, 208, 'G7-M-LWLT-0006-1', 'G7 Leather Wallet-BLACK', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (475, NULL, NULL, 209, 'G7-M-LWLT-0006-3', 'G7 Leather Wallet-BROWN', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (476, NULL, NULL, 210, 'G7-M-LWLT-0007-1', 'G7 Leather Wallet-BLACK', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (477, NULL, NULL, 211, 'G7-M-LWLT-0007-3', 'G7 Leather Wallet-BROWN', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (478, NULL, NULL, 212, 'G7-M-LWLT-0008-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '1.0000', 1, '151.0169', 5, '18.0000%', NULL, NULL, NULL, '990.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (479, NULL, NULL, 214, 'G7-M-LWLT-0009-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '2.0000', 1, '302.0339', 5, '18.0000%', NULL, NULL, NULL, '1980.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (480, NULL, NULL, 215, 'G7-M-LWLT-0010-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '4.0000', 1, '604.0678', 5, '18.0000%', NULL, NULL, NULL, '3960.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (481, NULL, NULL, 216, 'G7-M-LWLT-0011-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '4.0000', 1, '604.0678', 5, '18.0000%', NULL, NULL, NULL, '3960.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (482, NULL, NULL, 217, 'G7-M-LWLT-0012-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '5.0000', 1, '755.0847', 5, '18.0000%', NULL, NULL, NULL, '4950.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (483, NULL, NULL, 218, 'G7-M-LWLT-0013-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '2.0000', 1, '302.0339', 5, '18.0000%', NULL, NULL, NULL, '1980.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (484, NULL, NULL, 219, 'G7-M-LWLT-0014-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '5.0000', 1, '755.0847', 5, '18.0000%', NULL, NULL, NULL, '4950.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (485, NULL, NULL, 220, 'G7-M-LWLT-0015-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '5.0000', 1, '755.0847', 5, '18.0000%', NULL, NULL, NULL, '4950.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (486, NULL, NULL, 221, 'G7-M-LWLT-0016-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '4.0000', 1, '604.0678', 5, '18.0000%', NULL, NULL, NULL, '3960.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (487, NULL, NULL, 222, 'G7-M-LWLT-0017-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '2.0000', 1, '302.0339', 5, '18.0000%', NULL, NULL, NULL, '1980.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (488, NULL, NULL, 223, 'G7-M-LWLT-0017-68', 'G7 Leather Wallet-GIL', NULL, '838.9831', '4.0000', 1, '604.0678', 5, '18.0000%', NULL, NULL, NULL, '3960.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (489, NULL, NULL, 224, 'G7-M-LWLT-0019-68', 'G7 Leather Wallet-GIL', NULL, '838.9831', '4.0000', 1, '604.0678', 5, '18.0000%', NULL, NULL, NULL, '3960.0000', '0.0000', '2018-10-26', 'received', '990.0000', '990.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (490, NULL, NULL, 225, 'G7-M-PWLT-0001-62', 'G7 Passport Wallet-PARPAL', NULL, '423.7288', '6.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '0.0000', '2018-10-26', 'received', '500.0000', '500.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (491, 5, NULL, 226, 'G7-W-WLB-0002', 'G7 Ladies Bag ', NULL, '475.0000', '10.0000', 1, '855.0000', 5, '18%', '0', '0.0000', NULL, '5605.0000', '0.0000', '2018-10-26', 'received', '560.5000', '560.5000', '10.0000', 'Style-1', NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '855.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (492, 5, NULL, 227, 'G7-W-WLB-0003', 'G7 Ladies Bag', NULL, '575.0000', '10.0000', 1, '1035.0000', 5, '18%', '0', '0.0000', NULL, '6785.0000', '0.0000', '2018-10-26', 'received', '678.5000', '678.5000', '10.0000', 'Style-2', NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '1035.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (493, 5, NULL, 228, 'G7-W-WLB-0004', 'G7 Ladies Bag', NULL, '650.0000', '10.0000', 1, '1170.0000', 5, '18%', '0', '0.0000', NULL, '7670.0000', '0.0000', '2018-10-26', 'received', '767.0000', '767.0000', '10.0000', 'style-3', NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '1170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (494, 5, NULL, 229, 'G7-W-WLB-0005', 'G7 Ladies Bag', NULL, '850.0000', '3.0000', 1, '459.0000', 5, '18%', '0', '0.0000', NULL, '3009.0000', '0.0000', '2018-10-26', 'received', '1003.0000', '1003.0000', '3.0000', 'Style-5', NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '459.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (495, 5, NULL, 230, 'G7-W-WLB-0006', 'G7 Ladies Bag', NULL, '950.0000', '10.0000', 1, '1710.0000', 5, '18%', '0', '0.0000', NULL, '11210.0000', '0.0000', '2018-10-26', 'received', '1121.0000', '1121.0000', '10.0000', 'Style-6', NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '1710.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (496, 5, NULL, 231, 'G7-W-WLB-0007', 'G7 Ladies Bag', NULL, '1150.0000', '6.0000', 1, '1242.0000', 5, '18%', '0', '0.0000', NULL, '8142.0000', '0.0000', '2018-10-26', 'received', '1357.0000', '1357.0000', '6.0000', 'Style-7', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '1242.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (497, 5, NULL, 233, 'G7-W-WLB-0008', 'G7 Ladies Bag', NULL, '1250.0000', '10.0000', 1, '2250.0000', 5, '18%', '0', '0.0000', NULL, '14750.0000', '0.0000', '2018-10-26', 'received', '1475.0000', '1475.0000', '10.0000', 'style-8', NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '2250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (498, 5, NULL, 235, 'G7-W-WLB-0009', 'G7 Ladies Bag', NULL, '1350.0000', '3.0000', 1, '729.0000', 5, '18%', '0', '0.0000', NULL, '4779.0000', '0.0000', '2018-10-26', 'received', '1593.0000', '1593.0000', '3.0000', 'Style-9', NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '729.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (499, 5, NULL, 236, 'G7-W-WLB-0010', 'G7 Ladies Bag', NULL, '1195.0000', '3.0000', 1, '645.3000', 5, '18%', '0', '0.0000', NULL, '4230.3000', '0.0000', '2018-10-26', 'received', '1410.1000', '1410.1000', '3.0000', NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '645.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (500, 6, NULL, 232, 'G7-M-TB-0001', 'G7 T Bag 0001', NULL, '2500.0000', '2.0000', 1, '900.0000', 5, '18%', '0', '0.0000', NULL, '5900.0000', '0.0000', '2018-10-26', 'received', '2950.0000', '2950.0000', '2.0000', 'CarryAll', NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (501, 6, NULL, 237, 'G7-M-TB-0002', 'G7 T Bag 0002', NULL, '2800.0000', '2.0000', 1, '1008.0000', 5, '18%', '0', '0.0000', NULL, '6608.0000', '0.0000', '2018-10-26', 'received', '3304.0000', '3304.0000', '2.0000', 'HoldAll', NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '1008.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (502, 6, NULL, 238, 'G7-M-JKT-0001', 'G7 Mens Jacket', NULL, '3800.0000', '1.0000', 1, '684.0000', 5, '18%', '0', '0.0000', NULL, '4484.0000', '0.0000', '2018-10-26', 'received', '4484.0000', '4484.0000', '1.0000', 'MensJacket', NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '684.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (503, 6, NULL, 239, 'G7-B-BJKT-0001', 'G7 Kids Jacket 0001', NULL, '3500.0000', '1.0000', 1, '630.0000', 5, '18%', '0', '0.0000', NULL, '4130.0000', '0.0000', '2018-10-26', 'received', '4130.0000', '4130.0000', '1.0000', 'KidsJacket', NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '630.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (504, 7, NULL, 243, 'G7-W--WLB-0011', 'G7 Ladies Bag 0011', NULL, '1400.0000', '6.0000', 1, '1512.0000', 5, '18%', '0', '0.0000', NULL, '9912.0000', '0.0000', '2018-10-26', 'received', '1652.0000', '1652.0000', '6.0000', 'MixColorBags', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '1512.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (505, 7, NULL, 245, 'G7-W-WLB-0012', 'G7 Ladies Bag 0012', NULL, '1950.0000', '15.0000', 1, '5265.0000', 5, '18%', '0', '0.0000', NULL, '34515.0000', '0.0000', '2018-10-26', 'received', '2301.0000', '2301.0000', '15.0000', 'AntiqBags', NULL, 2, 'PCS', '15.0000', '18%', '0.0000', '0.0000', '5265.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (517, 8, NULL, 240, 'G7-M-LWLT-0020', 'G7 Leather Wallet-08', NULL, '380.0000', '12.0000', 1, '820.8000', 5, '18%', '0', '0.0000', NULL, '5380.8000', '0.0000', '2018-10-26', 'received', '448.4000', '448.4000', '12.0000', '08', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '820.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (518, 8, NULL, 241, 'G7-M-LWLT-0021', 'G7 Leather Wallet-03', NULL, '360.0000', '12.0000', 1, '777.6000', 5, '18%', '0', '0.0000', NULL, '5097.6000', '0.0000', '2018-10-26', 'received', '424.8000', '424.8000', '12.0000', '03', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '777.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (519, 8, NULL, 242, 'G7-M-LWLT-0022', 'G7 Leather Wallet-05', NULL, '310.0000', '12.0000', 1, '669.6000', 5, '18%', '0', '0.0000', NULL, '4389.6000', '0.0000', '2018-10-26', 'received', '365.8000', '365.8000', '12.0000', '05', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '669.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (520, 8, NULL, 244, 'G7-M-LWLT-0023', 'G7 Leather Wallet-10', NULL, '280.0000', '12.0000', 1, '604.8000', 5, '18%', '0', '0.0000', NULL, '3964.8000', '0.0000', '2018-10-26', 'received', '330.4000', '330.4000', '12.0000', '11', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '604.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (521, 8, NULL, 250, 'G7-M-LWLT-0025', 'G7 Leather Wallet-07', NULL, '220.0000', '12.0000', 1, '475.2000', 5, '18%', '0', '0.0000', NULL, '3115.2000', '0.0000', '2018-10-26', 'received', '259.6000', '259.6000', '12.0000', '07', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '475.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (522, 8, NULL, 247, 'G7-M-LWLT-0026', 'G7 Leather Wallet-09', NULL, '255.0000', '12.0000', 1, '550.8000', 5, '18%', '0', '0.0000', NULL, '3610.8000', '0.0000', '2018-10-26', 'received', '300.9000', '300.9000', '12.0000', '09', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '550.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (523, 8, NULL, 248, 'G7-M-LWLT-0027', 'G7 Leather Wallet-01', NULL, '190.0000', '12.0000', 1, '410.4000', 5, '18%', '0', '0.0000', NULL, '2690.4000', '0.0000', '2018-10-26', 'received', '224.2000', '224.2000', '12.0000', '01', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '410.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (524, 8, NULL, 249, 'G7-M-LWLT-0028', 'G7 Leather Wallet-031', NULL, '200.0000', '12.0000', 1, '432.0000', 5, '18%', '0', '0.0000', NULL, '2832.0000', '0.0000', '2018-10-26', 'received', '236.0000', '236.0000', '12.0000', '03', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '432.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (525, 8, NULL, 251, 'G7-M-SLP-0001', 'G7 Slipper', NULL, '720.0000', '4.0000', 1, '518.4000', 5, '18%', '0', '0.0000', NULL, '3398.4000', '0.0000', '2018-10-26', 'received', '849.6000', '849.6000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '518.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (526, 8, NULL, 252, 'G7-M-SLP-0002', 'G7 Slipper', NULL, '850.0000', '4.0000', 1, '612.0000', 5, '18%', '0', '0.0000', NULL, '4012.0000', '0.0000', '2018-10-26', 'received', '1003.0000', '1003.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '612.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (527, 8, NULL, 246, 'G7-M-LWLT-0024', 'G7 Leather Wallet-11', NULL, '280.0000', '12.0000', 1, '604.8000', 5, '18%', '0', '0.0000', NULL, '3964.8000', '0.0000', '2018-10-26', 'received', '330.4000', '330.4000', '12.0000', '11', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '604.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (528, 9, NULL, 200, 'G7-M-LWLT-0002-1', 'G7 Leather Wallet-BLACK', NULL, '140.0000', '6.0000', 1, '151.2000', 5, '18%', '0', '0.0000', NULL, '991.2000', '6.0000', '2018-10-27', 'received', '165.2000', '165.2000', '6.0000', 'MBlackWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '151.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (529, 9, NULL, 201, 'G7-M-LWLT-0002-3', 'G7 Leather Wallet-BROWN', NULL, '130.0000', '6.0000', 1, '140.4000', 5, '18%', '0', '0.0000', NULL, '920.4000', '6.0000', '2018-10-27', 'received', '153.4000', '153.4000', '6.0000', 'MBrownWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '140.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (530, 9, NULL, 202, 'G7-M-LWLT-0003-1', 'G7 Leather Wallet-BLACK', NULL, '140.0000', '6.0000', 1, '151.2000', 5, '18%', '0', '0.0000', NULL, '991.2000', '6.0000', '2018-10-27', 'received', '165.2000', '165.2000', '6.0000', 'MBlackWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '151.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (531, 9, NULL, 203, 'G7-M-LWLT-0003-3', 'G7 Leather Wallet-BROWN', NULL, '130.0000', '6.0000', 1, '140.4000', 5, '18%', '0', '0.0000', NULL, '920.4000', '6.0000', '2018-10-27', 'received', '153.4000', '153.4000', '6.0000', 'MBrownWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '140.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (532, 9, NULL, 204, 'G7-M-LWLT-0004-1', 'G7 Leather Wallet-BLACK', NULL, '155.0000', '12.0000', 1, '334.8000', 5, '18%', '0', '0.0000', NULL, '2194.8000', '12.0000', '2018-10-27', 'received', '182.9000', '182.9000', '12.0000', 'MTanWallet', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '334.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (533, 9, NULL, 205, 'G7-M-LWLT-0004-3', 'G7 Leather Wallet-BROWN', NULL, '155.0000', '12.0000', 1, '334.8000', 5, '18%', '0', '0.0000', NULL, '2194.8000', '12.0000', '2018-10-27', 'received', '182.9000', '182.9000', '12.0000', 'MTanWallet', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '334.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (534, 9, NULL, 206, 'G7-M-LWLT-0005-1', 'G7 Leather Wallet-BLACK', NULL, '160.0000', '6.0000', 1, '172.8000', 5, '18%', '0', '0.0000', NULL, '1132.8000', '6.0000', '2018-10-27', 'received', '188.8000', '188.8000', '6.0000', 'MPunchWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '172.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (535, 9, NULL, 207, 'G7-M-LWLT-0005-3', 'G7 Leather Wallet-BROWN', NULL, '160.0000', '6.0000', 1, '172.8000', 5, '18%', '0', '0.0000', NULL, '1132.8000', '6.0000', '2018-10-27', 'received', '188.8000', '188.8000', '6.0000', 'MTanWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '172.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (536, 9, NULL, 208, 'G7-M-LWLT-0006-1', 'G7 Leather Wallet-BLACK', NULL, '170.0000', '6.0000', 1, '183.6000', 5, '18%', '0', '0.0000', NULL, '1203.6000', '6.0000', '2018-10-27', 'received', '200.6000', '200.6000', '6.0000', 'MPouchWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '183.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (537, 9, NULL, 209, 'G7-M-LWLT-0006-3', 'G7 Leather Wallet-BROWN', NULL, '170.0000', '6.0000', 1, '183.6000', 5, '18%', '0', '0.0000', NULL, '1203.6000', '6.0000', '2018-10-27', 'received', '200.6000', '200.6000', '6.0000', 'MPouchWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '183.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (538, 9, NULL, 225, 'G7-M-PWLT-0001-62', 'G7 Passport Wallet-PARPAL', NULL, '250.0000', '6.0000', 1, '270.0000', 5, '18%', '0', '0.0000', NULL, '1770.0000', '6.0000', '2018-10-27', 'received', '295.0000', '295.0000', '6.0000', 'PassportCover', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (539, 9, NULL, 212, 'G7-M-LWLT-0008-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '1.0000', 1, '61.2000', 5, '18%', '0', '0.0000', NULL, '401.2000', '1.0000', '2018-10-27', 'received', '401.2000', '401.2000', '1.0000', 'ChainWallet', NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '61.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (540, 9, NULL, 214, 'G7-M-LWLT-0009-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '2.0000', 1, '122.4000', 5, '18%', '0', '0.0000', NULL, '802.4000', '2.0000', '2018-10-27', 'received', '401.2000', '401.2000', '2.0000', 'ChainWallet', NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '122.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (541, 9, NULL, 215, 'G7-M-LWLT-0010-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '4.0000', 1, '244.8000', 5, '18%', '0', '0.0000', NULL, '1604.8000', '4.0000', '2018-10-27', 'received', '401.2000', '401.2000', '4.0000', 'ChainWallet', NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (542, 9, NULL, 216, 'G7-M-LWLT-0011-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '4.0000', 1, '244.8000', 5, '18%', '0', '0.0000', NULL, '1604.8000', '4.0000', '2018-10-27', 'received', '401.2000', '401.2000', '4.0000', 'ChainWallet', NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (543, 9, NULL, 217, 'G7-M-LWLT-0012-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '6.0000', 1, '367.2000', 5, '18%', '0', '0.0000', NULL, '2407.2000', '6.0000', '2018-10-27', 'received', '401.2000', '401.2000', '6.0000', 'ChainWallet', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '367.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (544, 9, NULL, 218, 'G7-M-LWLT-0013-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '2.0000', 1, '122.4000', 5, '18%', '0', '0.0000', NULL, '802.4000', '2.0000', '2018-10-27', 'received', '401.2000', '401.2000', '2.0000', 'ChainWallet', NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '122.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (545, 9, NULL, 219, 'G7-M-LWLT-0014-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '5.0000', 1, '306.0000', 5, '18%', '0', '0.0000', NULL, '2006.0000', '5.0000', '2018-10-27', 'received', '401.2000', '401.2000', '5.0000', 'ChainWallet', NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '306.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (546, 9, NULL, 220, 'G7-M-LWLT-0015-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '5.0000', 1, '306.0000', 5, '18%', '0', '0.0000', NULL, '2006.0000', '5.0000', '2018-10-27', 'received', '401.2000', '401.2000', '5.0000', 'ChainWallet', NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '306.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (547, 9, NULL, 221, 'G7-M-LWLT-0016-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '4.0000', 1, '244.8000', 5, '18%', '0', '0.0000', NULL, '1604.8000', '4.0000', '2018-10-27', 'received', '401.2000', '401.2000', '4.0000', 'ChainWallet', NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (548, 9, NULL, 222, 'G7-M-LWLT-0017-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '2.0000', 1, '122.4000', 5, '18%', '0', '0.0000', NULL, '802.4000', '2.0000', '2018-10-27', 'received', '401.2000', '401.2000', '2.0000', 'ChainWallet', NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '122.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (549, 9, NULL, 223, 'G7-M-LWLT-0018-61', 'G7 Leather Wallet-GIL', NULL, '340.0000', '4.0000', 1, '244.8000', 5, '18%', '0', '0.0000', NULL, '1604.8000', '4.0000', '2018-10-27', 'received', '401.2000', '401.2000', '4.0000', 'ChainWallet', NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (550, 9, NULL, 224, 'G7-M-LWLT-0019-68', 'G7 Leather Wallet-GIL', NULL, '340.0000', '4.0000', 1, '244.8000', 5, '18%', '0', '0.0000', NULL, '1604.8000', '4.0000', '2018-10-27', 'received', '401.2000', '401.2000', '4.0000', 'ChainWallet', NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (551, 9, NULL, 253, 'G7-M-LWLT-0029', 'G7 Mens Wallet', NULL, '150.0000', '96.0000', 1, '2592.0000', 5, '18%', '0', '0.0000', NULL, '16992.0000', '96.0000', '2018-10-27', 'received', '177.0000', '177.0000', '96.0000', 'MensWallet', NULL, 2, 'PCS', '96.0000', '18%', '0.0000', '0.0000', '2592.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (552, 9, NULL, 254, 'G7-M-HB-0001-3', 'G7 Leather Bag-BROWN', NULL, '2780.0000', '2.0000', 1, '1000.8000', 5, '18%', '0', '0.0000', NULL, '6560.8000', '6.0000', '2018-10-27', 'received', '3280.4000', '3280.4000', '2.0000', 'ChrocodileLBag', NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '1000.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (553, 9, NULL, 255, 'G7-M-HB-0001-1', 'G7 Leather Bag-BLACK', NULL, '2700.0000', '2.0000', 1, '972.0000', 5, '18%', '0', '0.0000', NULL, '6372.0000', '6.0000', '2018-10-27', 'received', '3186.0000', '3186.0000', '2.0000', 'ChrocodileLBag', NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '972.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (554, 9, NULL, 256, 'G7-M-HB-0002', 'G7 Holdbag Bag', NULL, '4210.0000', '2.0000', 1, '1515.6000', 5, '18%', '0', '0.0000', NULL, '9935.6000', '2.0000', '2018-10-27', 'received', '4967.8000', '4967.8000', '2.0000', 'ChrocodilePrintHoldAll', NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '1515.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (555, 10, NULL, 257, 'G7-M-LWLT-0030', 'G7 Leather Wallet', NULL, '425.0000', '21.0000', 1, '1606.5000', 5, '18%', '0', '0.0000', NULL, '10531.5000', '21.0000', '2018-10-27', 'received', '501.5000', '501.5000', '21.0000', 'Wallet', NULL, 2, 'PCS', '21.0000', '18%', '0.0000', '0.0000', '1606.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (556, 10, NULL, 258, 'G7-M-LWLT-0031', 'G7 Leather Wallet', NULL, '325.0000', '22.0000', 1, '1287.0000', 5, '18%', '0', '0.0000', NULL, '8437.0000', '2.0000', '2018-10-27', 'received', '383.5000', '383.5000', '22.0000', 'Wallet', NULL, 2, 'PCS', '22.0000', '18%', '0.0000', '0.0000', '1287.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (557, NULL, NULL, 260, 'G7-M-ILB-0012', 'G7 Fancy Leather Belt', NULL, '635.5932', '8.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-10-27', 'received', '750.0000', '750.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (558, NULL, NULL, 265, 'G7-M-LPB-0002', 'G7 Laptop Bag', NULL, '847.4576', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-27', 'received', '1000.0000', '1000.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (572, 11, NULL, 259, 'G7-M-NT-0002', 'G7 Gift Set', NULL, '350.0000', '5.0000', 1, '87.5000', 3, '5%', '0', '0.0000', NULL, '1837.5000', '0.0000', '2018-10-27', 'received', '367.5000', '367.5000', '5.0000', 'ZETC001', NULL, 2, 'PCS', '5.0000', '5%', '0.0000', '0.0000', '87.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (573, 11, NULL, 261, 'G7-M-NT-0001', 'G7 Neck Tie', NULL, '200.0000', '4.0000', 1, '40.0000', 3, '5%', '0', '0.0000', NULL, '840.0000', '0.0000', '2018-10-27', 'received', '210.0000', '210.0000', '4.0000', 'NT0008', NULL, 2, 'PCS', '4.0000', '5%', '0.0000', '0.0000', '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (574, 11, NULL, 262, 'G7-M-BRP-0001', 'G7 Brooch Pin', NULL, '125.0000', '8.0000', 1, '30.0000', 7, '3%', '0', '0.0000', NULL, '1030.0000', '0.0000', '2018-10-27', 'received', '128.7500', '128.7500', '8.0000', 'ZL001-B60-M60', NULL, 2, 'PCS', '8.0000', '3%', '0.0000', '0.0000', '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (575, 11, NULL, 263, 'G7-M-CHB-0001', 'G7 Chest Bag', NULL, '400.0000', '5.0000', 1, '360.0000', 5, '18%', '0', '0.0000', NULL, '2360.0000', '5.0000', '2018-10-27', 'received', '472.0000', '472.0000', '5.0000', 'ChestBag', NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '360.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (576, 11, NULL, 264, 'G7-M-LPB-0001', 'G7 Laptop Bag', NULL, '2500.0000', '3.0000', 1, '1350.0000', 5, '18%', '0', '0.0000', NULL, '8850.0000', '0.0000', '2018-10-27', 'received', '2950.0000', '2950.0000', '3.0000', 'LaptopBag', NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '1350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (577, 11, NULL, 265, 'G7-M-LPB-0002', 'G7 Laptop Bag', NULL, '3000.0000', '1.0000', 1, '540.0000', 5, '18%', '0', '0.0000', NULL, '3540.0000', '0.0000', '2018-10-27', 'received', '3540.0000', '3540.0000', '1.0000', 'LaptopBag', NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '540.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (578, 11, NULL, 266, 'G7-M-SLB-0001', 'G7 Sling Bag', NULL, '850.0000', '4.0000', 1, '612.0000', 5, '18%', '0', '0.0000', NULL, '4012.0000', '4.0000', '2018-10-27', 'received', '1003.0000', '1003.0000', '4.0000', 'SlingBag', NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '612.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (579, 11, NULL, 267, 'G7-M-SLB-0002', 'G7 Sling Bag', NULL, '900.0000', '5.0000', 1, '810.0000', 5, '18%', '0', '0.0000', NULL, '5310.0000', '5.0000', '2018-10-27', 'received', '1062.0000', '1062.0000', '5.0000', 'ZGS002M', NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '810.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (580, 11, NULL, 268, 'G7-M-LWLT-0033', 'G7 Zebru Wallet', NULL, '300.0000', '6.0000', 1, '324.0000', 5, '18%', '0', '0.0000', NULL, '2124.0000', '6.0000', '2018-10-27', 'received', '354.0000', '354.0000', '6.0000', 'WC002K1', NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '324.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (581, 11, NULL, 269, 'G7-M-LWLT-0034', 'G7 Mens Wallet', NULL, '225.0000', '68.0000', 1, '2754.0000', 5, '18%', '0', '0.0000', NULL, '18054.0000', '57.0000', '2018-10-27', 'received', '265.5000', '265.5000', '68.0000', '225Wala', NULL, 2, 'PCS', '68.0000', '18%', '0.0000', '0.0000', '2754.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (582, 11, NULL, 270, 'G7-M-LWLT-0035', 'G7 Wallet + Cardcase', NULL, '450.0000', '12.0000', 1, '972.0000', 5, '18%', '0', '0.0000', NULL, '6372.0000', '12.0000', '2018-10-27', 'received', '531.0000', '531.0000', '12.0000', 'ZX1001/4', NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '972.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (583, 11, NULL, 271, 'G7-M-CFL-0001', 'G7 Cuffling', NULL, '250.0000', '15.0000', 1, '112.5000', 7, '3%', '0', '0.0000', NULL, '3862.5000', '0.0000', '2018-10-27', 'received', '257.5000', '257.5000', '15.0000', 'ZebruCuffling', NULL, 2, 'PCS', '15.0000', '3%', '0.0000', '0.0000', '112.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (584, 11, NULL, 272, 'G7-M-LWLT-0036', 'G7 Leather Wallet', NULL, '50.0000', '119.0000', 1, '1071.0000', 5, '18%', '0', '0.0000', NULL, '7021.0000', '119.0000', '2018-10-27', 'received', '59.0000', '59.0000', '119.0000', 'WE002K1', NULL, 2, 'PCS', '119.0000', '18%', '0.0000', '0.0000', '1071.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (585, 11, NULL, 273, 'G7-M-SLB-0003', 'G7 Sling Bag', NULL, '800.0000', '1.0000', 1, '144.0000', 5, '18%', '0', '0.0000', NULL, '944.0000', '1.0000', '2018-10-27', 'received', '944.0000', '944.0000', '1.0000', NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '144.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (586, NULL, NULL, 236, 'G7-W-WLB-0010', 'G7 Ladies Bag', NULL, '1483.0508', '1.0000', 1, '266.9492', 5, '18%', NULL, NULL, NULL, '1750.0000', '1.0000', '2018-10-30', 'received', '1750.0000', '1750.0000', '1.0000', NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '266.9492');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (587, NULL, NULL, 235, 'G7-W-WLB-0009', 'G7 Ladies Bag', NULL, '1652.5424', '2.0000', 1, '297.4576', 5, '18%', NULL, NULL, NULL, '3900.0000', '2.0000', '2018-10-30', 'received', '1950.0000', '1950.0000', '2.0000', NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '594.9152');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (588, NULL, NULL, 233, 'G7-W-WLB-0008', 'G7 Ladies Bag', NULL, '1567.7966', '0.0000', 1, '282.2034', 5, '18%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-30', 'received', '1850.0000', '1850.0000', '0.0000', NULL, NULL, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (589, NULL, NULL, 231, 'G7-W-WLB-0007', 'G7 Ladies Bag', NULL, '1440.6780', '1.0000', 1, '259.3220', 5, '18%', NULL, NULL, NULL, '1700.0000', '1.0000', '2018-10-30', 'received', '1700.0000', '1700.0000', '1.0000', NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '259.3220');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (590, NULL, NULL, 230, 'G7-W-WLB-0006', 'G7 Ladies Bag', NULL, '1228.8136', '2.0000', 1, '221.1864', 5, '18%', NULL, NULL, NULL, '2900.0000', '2.0000', '2018-10-30', 'received', '1450.0000', '1450.0000', '2.0000', NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '442.3728');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (591, NULL, NULL, 229, 'G7-W-WLB-0005', 'G7 Ladies Bag', NULL, '1059.3220', '0.0000', 1, '190.6780', 5, '18%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-30', 'received', '1250.0000', '1250.0000', '0.0000', NULL, NULL, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (592, NULL, NULL, 228, 'G7-W-WLB-0004', 'G7 Ladies Bag', NULL, '805.0847', '0.0000', 1, '144.9153', 5, '18%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-30', 'received', '950.0000', '950.0000', '0.0000', NULL, NULL, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (593, NULL, NULL, 227, 'G7-W-WLB-0003', 'G7 Ladies Bag', NULL, '762.7119', '0.0000', 1, '137.2881', 5, '18%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-30', 'received', '900.0000', '900.0000', '0.0000', NULL, NULL, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (594, NULL, NULL, 226, 'G7-W-WLB-0002', 'G7 Ladies Bag ', NULL, '720.3390', '0.0000', 1, '129.6610', 5, '18%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-10-30', 'received', '850.0000', '850.0000', '0.0000', NULL, NULL, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (595, NULL, NULL, 274, 'G7-M-LWLT-0032-63', 'G7 Leather Wallet-SFT', NULL, '381.3559', '46.0000', 1, '3157.6271', 5, '18.0000%', NULL, NULL, NULL, '20700.0000', '0.0000', '2018-10-30', 'received', '450.0000', '450.0000', '46.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (596, 12, NULL, 257, 'G7-M-LWLT-0030', 'G7 Leather Wallet', NULL, '425.0000', '-21.0000', 1, '-1606.5000', 5, '18%', '0', '0.0000', NULL, '-10531.5000', '-21.0000', '0000-00-00', 'received', '501.5000', '501.5000', NULL, NULL, 555, 2, 'PCS', '-21.0000', '18%', '0.0000', '0.0000', '-1606.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (597, 12, NULL, 258, 'G7-M-LWLT-0031', 'G7 Leather Wallet', NULL, '325.0000', '-22.0000', 1, '-1287.0000', 5, '18%', '0', '0.0000', NULL, '-8437.0000', '-22.0000', '0000-00-00', 'received', '383.5000', '383.5000', NULL, NULL, 556, 2, 'PCS', '-22.0000', '18%', '0.0000', '0.0000', '-1287.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (598, NULL, NULL, 275, 'G7-M-LWLT-0037-64', 'G7 Leather Wallet-Combo', NULL, '669.4915', '15.0000', 1, '1807.6271', 5, '18.0000%', NULL, NULL, NULL, '11850.0000', '0.0000', '2018-10-31', 'received', '790.0000', '790.0000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (599, NULL, NULL, 276, 'G7-M-PWLT-0002-1', 'G7 Passport Wallet-Black', NULL, '474.5763', '3.0000', 1, '256.2712', 5, '18.0000%', NULL, NULL, NULL, '1680.0000', '0.0000', '2018-10-31', 'received', '560.0000', '560.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (600, NULL, NULL, 277, 'G7-M-PWLT-0002-2', 'G7 Passport Wallet-BROWN', NULL, '474.5763', '3.0000', 1, '256.2712', 5, '18.0000%', NULL, NULL, NULL, '1680.0000', '0.0000', '2018-10-31', 'received', '560.0000', '560.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (601, NULL, NULL, 279, 'G7-M-PWLT-0002-4', 'G7 Passport Wallet-TAN', NULL, '474.5763', '3.0000', 1, '256.2712', 5, '18.0000%', NULL, NULL, NULL, '1680.0000', '0.0000', '2018-10-31', 'received', '560.0000', '560.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (602, NULL, NULL, 280, 'JI-M-PB-0001', ' JI PU Belt', NULL, '423.7288', '120.0000', 1, '9152.5424', 5, '18.0000%', NULL, NULL, NULL, '60000.0000', '120.0000', '2018-11-01', 'received', '500.0000', '500.0000', '120.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (603, NULL, NULL, 258, 'G7-M-LWLT-0031', 'G7 Leather Wallet', NULL, '974.5763', '20.0000', 1, '175.4237', 5, '18%', NULL, NULL, NULL, '23000.0000', '2.0000', '2018-11-02', 'received', '1150.0000', '1150.0000', '20.0000', NULL, NULL, 2, 'PCS', '20.0000', '18%', '0.0000', '0.0000', '3508.4740');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (604, NULL, NULL, 258, 'G7-M-LWLT-0031', 'G7 Leather Wallet', NULL, '974.5763', '18.0000', 1, '175.4237', 5, '18%', NULL, NULL, NULL, '20700.0000', '18.0000', '2018-11-02', 'received', '1150.0000', '1150.0000', '18.0000', NULL, NULL, 2, 'PCS', '18.0000', '18%', '0.0000', '0.0000', '3157.6266');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (605, 13, NULL, 259, 'G7-M-NT-0002', 'G7 Gift Set', NULL, '350.0000', '0.0000', 1, '0.0000', 3, '5%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '367.5000', '367.5000', NULL, NULL, 572, 2, 'PCS', '0.0000', '5%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (606, 13, NULL, 261, 'G7-M-NT-0001', 'G7 Neck Tie', NULL, '200.0000', '0.0000', 1, '0.0000', 3, '5%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '210.0000', '210.0000', NULL, NULL, 573, 2, 'PCS', '0.0000', '5%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (607, 13, NULL, 262, 'G7-M-BRP-0001', 'G7 Brooch Pin', NULL, '125.0000', '0.0000', 1, '0.0000', 7, '3%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '128.7500', '128.7500', NULL, NULL, 574, 2, 'PCS', '0.0000', '3%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (608, 13, NULL, 263, 'G7-M-CHB-0001', 'G7 Chest Bag', NULL, '400.0000', '-5.0000', 1, '-360.0000', 5, '18%', '0', '0.0000', NULL, '-2360.0000', '-5.0000', '0000-00-00', 'received', '472.0000', '472.0000', NULL, NULL, 575, 2, 'PCS', '-5.0000', '18%', '0.0000', '0.0000', '-360.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (609, 13, NULL, 264, 'G7-M-LPB-0001', 'G7 Laptop Bag', NULL, '2500.0000', '0.0000', 1, '0.0000', 5, '18%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '2950.0000', '2950.0000', NULL, NULL, 576, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (610, 13, NULL, 265, 'G7-M-LPB-0002', 'G7 Laptop Bag', NULL, '3000.0000', '0.0000', 1, '0.0000', 5, '18%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '3540.0000', '3540.0000', NULL, NULL, 577, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (611, 13, NULL, 266, 'G7-M-SLB-0001', 'G7 Sling Bag', NULL, '850.0000', '-4.0000', 1, '-612.0000', 5, '18%', '0', '0.0000', NULL, '-4012.0000', '-4.0000', '0000-00-00', 'received', '1003.0000', '1003.0000', NULL, NULL, 578, 2, 'PCS', '-4.0000', '18%', '0.0000', '0.0000', '-612.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (612, 13, NULL, 267, 'G7-M-SLB-0002', 'G7 Sling Bag', NULL, '900.0000', '-5.0000', 1, '-810.0000', 5, '18%', '0', '0.0000', NULL, '-5310.0000', '-5.0000', '0000-00-00', 'received', '1062.0000', '1062.0000', NULL, NULL, 579, 2, 'PCS', '-5.0000', '18%', '0.0000', '0.0000', '-810.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (613, 13, NULL, 268, 'G7-M-LWLT-0033', 'G7 Zebru Wallet', NULL, '300.0000', '-6.0000', 1, '-324.0000', 5, '18%', '0', '0.0000', NULL, '-2124.0000', '-6.0000', '0000-00-00', 'received', '354.0000', '354.0000', NULL, NULL, 580, 2, 'PCS', '-6.0000', '18%', '0.0000', '0.0000', '-324.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (614, 13, NULL, 269, 'G7-M-LWLT-0034', 'G7 Mens Wallet', NULL, '225.0000', '-2.0000', 1, '-81.0000', 5, '18%', '0', '0.0000', NULL, '-531.0000', '-2.0000', '0000-00-00', 'received', '265.5000', '265.5000', NULL, NULL, 581, 2, 'PCS', '-2.0000', '18%', '0.0000', '0.0000', '-81.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (615, 13, NULL, 270, 'G7-M-LWLT-0035', 'G7 Wallet + Cardcase', NULL, '450.0000', '0.0000', 1, '0.0000', 5, '18%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '531.0000', '531.0000', NULL, NULL, 582, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (616, 13, NULL, 271, 'G7-M-CFL-0001', 'G7 Cuffling', NULL, '250.0000', '0.0000', 1, '0.0000', 7, '3%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '257.5000', '257.5000', NULL, NULL, 583, 2, 'PCS', '0.0000', '3%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (617, 13, NULL, 272, 'G7-M-LWLT-0036', 'G7 Leather Wallet', NULL, '50.0000', '-119.0000', 1, '-1071.0000', 5, '18%', '0', '0.0000', NULL, '-7021.0000', '-119.0000', '0000-00-00', 'received', '59.0000', '59.0000', NULL, NULL, 584, 2, 'PCS', '-119.0000', '18%', '0.0000', '0.0000', '-1071.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (618, 13, NULL, 273, 'G7-M-SLB-0003', 'G7 Sling Bag', NULL, '800.0000', '0.0000', 1, '0.0000', 5, '18%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '944.0000', '944.0000', NULL, NULL, 585, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (619, 14, NULL, 226, 'G7-W-WLB-0002', 'G7 Ladies Bag ', NULL, '475.0000', '2.0000', 1, '171.0000', 5, '18%', '0', '0.0000', NULL, '1121.0000', '0.0000', '2018-11-05', 'received', '560.5000', '560.5000', '2.0000', NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '171.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (620, 14, NULL, 228, 'G7-W-WLB-0004', 'G7 Ladies Bag', NULL, '650.0000', '4.0000', 1, '468.0000', 5, '18%', '0', '0.0000', NULL, '3068.0000', '0.0000', '2018-11-05', 'received', '767.0000', '767.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '468.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (621, 14, NULL, 229, 'G7-W-WLB-0005', 'G7 Ladies Bag', NULL, '850.0000', '10.0000', 1, '1530.0000', 5, '18%', '0', '0.0000', NULL, '10030.0000', '0.0000', '2018-11-05', 'received', '1003.0000', '1003.0000', '10.0000', NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '1530.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (622, 14, NULL, 230, 'G7-W-WLB-0006', 'G7 Ladies Bag', NULL, '950.0000', '2.0000', 1, '342.0000', 5, '18%', '0', '0.0000', NULL, '2242.0000', '0.0000', '2018-11-05', 'received', '1121.0000', '1121.0000', '2.0000', NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '342.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (623, 14, NULL, 231, 'G7-W-WLB-0007', 'G7 Ladies Bag', NULL, '1150.0000', '5.0000', 1, '1035.0000', 5, '18%', '0', '0.0000', NULL, '6785.0000', '0.0000', '2018-11-05', 'received', '1357.0000', '1357.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '1035.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (624, 14, NULL, 235, 'G7-W-WLB-0009', 'G7 Ladies Bag', NULL, '1350.0000', '20.0000', 1, '4860.0000', 5, '18%', '0', '0.0000', NULL, '31860.0000', '0.0000', '2018-11-05', 'received', '1593.0000', '1593.0000', '20.0000', NULL, NULL, 2, 'PCS', '20.0000', '18%', '0.0000', '0.0000', '4860.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (625, 14, NULL, 281, 'G7-W-WLB-0013', 'G7 Ladies Bag', NULL, '550.0000', '5.0000', 1, '495.0000', 5, '18%', '0', '0.0000', NULL, '3245.0000', '0.0000', '2018-11-05', 'received', '649.0000', '649.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '495.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (626, NULL, NULL, 282, 'JI-M-SFC-0001', 'JI Steel Fitting Casual', NULL, '1313.5593', '10.0000', 1, '2364.4068', 5, '18.0000%', NULL, NULL, NULL, '15500.0000', '0.0000', '2018-11-05', 'received', '1550.0000', '1550.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (627, NULL, NULL, 283, 'G7-W-WMB-0001', 'G7 Mobile Bag', NULL, '1949.1525', '10.0000', 1, '3508.4746', 5, '18.0000%', NULL, NULL, NULL, '23000.0000', '10.0000', '2018-11-05', 'received', '2300.0000', '2300.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (628, NULL, NULL, 284, 'JI-M-IEL-0008-65', 'JI Italian Limited Edition-Dimond ', NULL, '1652.5424', '6.0000', 1, '1784.7458', 5, '18.0000%', NULL, NULL, NULL, '11700.0000', '6.0000', '2018-11-05', 'received', '1950.0000', '1950.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (629, NULL, NULL, 285, 'JI-M-IEL-0009', 'JI Italian Limited Edition ', NULL, '1949.1525', '6.0000', 1, '2105.0847', 5, '18.0000%', NULL, NULL, NULL, '13800.0000', '6.0000', '2018-11-05', 'received', '2300.0000', '2300.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (630, NULL, NULL, 286, 'JI-M-ISM-0004-56', 'JI Italian Steel Bkl-KRT', NULL, '1313.5593', '12.0000', 1, '2837.2881', 5, '18.0000%', NULL, NULL, NULL, '18600.0000', '6.0000', '2018-11-05', 'received', '1550.0000', '1550.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (631, NULL, NULL, 287, 'JI-M-ISM-0005', 'JI ltalian Steel Bkl', NULL, '1950.0000', '6.0000', 1, '0.0000', 1, '0.0000', NULL, NULL, NULL, '11700.0000', '0.0000', '2018-11-05', 'received', '1950.0000', '1950.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (632, NULL, NULL, 288, 'JI-M-ISB-0006-65', 'JI ltalian Steel Bkl-Dimond', NULL, '1652.5424', '6.0000', 1, '1784.7458', 5, '18.0000%', NULL, NULL, NULL, '11700.0000', '0.0000', '2018-11-05', 'received', '1950.0000', '1950.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (633, NULL, NULL, 289, 'JI-M-ISB-0007', 'JI Italian Steel Bkl', NULL, '1398.3051', '12.0000', 1, '3020.3390', 5, '18.0000%', NULL, NULL, NULL, '19800.0000', '0.0000', '2018-11-05', 'received', '1650.0000', '1650.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (634, NULL, NULL, 290, 'JI-M-IEL-0008', 'Italian Limited edition ', NULL, '1686.4407', '6.0000', 1, '1821.3559', 5, '18.0000%', NULL, NULL, NULL, '11940.0000', '6.0000', '2018-11-07', 'received', '1990.0000', '1990.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (635, NULL, NULL, 291, 'JI-M-CBLT-0001', 'JI Ceramic Belt - 35mm', NULL, '2415.2542', '4.0000', 1, '1738.9831', 5, '18.0000%', NULL, NULL, NULL, '11400.0000', '0.0000', '2018-11-07', 'received', '2850.0000', '2850.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (636, NULL, NULL, 292, 'JI-M-CBLT-0002', 'JI Ceramic Belt - 40mm', NULL, '2542.3729', '2.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2018-11-07', 'received', '3000.0000', '3000.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (637, 15, NULL, 293, 'Buckle-1', 'Buckle', NULL, '15.0000', '2000.0000', 1, '5400.0000', 5, '18%', '0', '0.0000', NULL, '35400.0000', '0.0000', '2018-11-19', 'received', '17.7000', '15.0000', '2000.0000', NULL, NULL, 2, 'PCS', '2000.0000', '18%', '0.0000', '0.0000', '5400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (638, 15, NULL, 294, 'Buckles-1', 'Buckls(metal)', NULL, '15.0000', '8110.0000', 1, '21897.0000', 5, '18%', '0', '0.0000', NULL, '143547.0000', '1246.0000', '2018-11-19', 'received', '17.7000', '15.0000', '8110.0000', NULL, NULL, 2, 'PCS', '8110.0000', '18%', '0.0000', '0.0000', '21897.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (639, 15, NULL, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', NULL, '40.0000', '3050.0000', 1, '21960.0000', 5, '18%', '0', '0.0000', NULL, '143960.0000', '1816.0000', '2018-11-19', 'received', '47.2000', '40.0000', '3050.0000', NULL, NULL, 2, 'PCS', '3050.0000', '18%', '0.0000', '0.0000', '21960.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (644, NULL, NULL, 298, 'JI-M-CWLT-0001', 'JI Chain Wallet', NULL, '391.0000', '43.0000', 1, '3026.3400', 5, '18.0000%', NULL, NULL, NULL, '19839.3400', '0.0000', '2018-11-19', 'received', '461.3800', '461.3800', '43.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (645, NULL, NULL, 299, 'JI-M-CWLT-0002', 'JI Chain Wallet(Esiposs)', NULL, '661.0169', '13.0000', 1, '1546.7797', 5, '18.0000%', NULL, NULL, NULL, '10140.0000', '0.0000', '2018-11-19', 'received', '780.0000', '780.0000', '13.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (646, NULL, NULL, 300, 'JI-M-CWLT-0003', 'JI Chain Wallet(Esiposs)', NULL, '754.2373', '11.0000', 1, '1493.3898', 5, '18.0000%', NULL, NULL, NULL, '9790.0000', '0.0000', '2018-11-19', 'received', '890.0000', '890.0000', '11.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (647, NULL, NULL, 301, 'JI-M-CWLT-0004', 'JI Chain Wallet(Esiposs)', NULL, '838.9831', '35.0000', 1, '5285.5932', 5, '18.0000%', NULL, NULL, NULL, '34650.0000', '0.0000', '2018-11-19', 'received', '990.0000', '990.0000', '35.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (648, NULL, NULL, 302, 'JI-M-CWLT-0005', 'JI Chain Wallet(Esiposs)', NULL, '923.7288', '10.0000', 1, '1662.7119', 5, '18.0000%', NULL, NULL, NULL, '10900.0000', '10.0000', '2018-11-19', 'received', '1090.0000', '1090.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (649, NULL, NULL, 304, 'G7-W-WC-000', 'G7 Calch', NULL, '415.2542', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '490.0000', '490.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (650, NULL, NULL, 305, 'G7-W-WC-0003', 'G7 Calch', NULL, '762.7119', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '900.0000', '900.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (651, NULL, NULL, 306, 'G7-W-WC-0004', 'G7 Calch', NULL, '838.9831', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '990.0000', '990.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (652, NULL, NULL, 307, 'G7-W-WC-0005', 'G7 Calch', NULL, '805.0847', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '950.0000', '950.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (653, NULL, NULL, 308, 'G7-W-WC-0006', 'G7 Calch', NULL, '805.0847', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '950.0000', '950.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (654, NULL, NULL, 309, 'G7-W-WC-0007', 'G7 Calch', NULL, '838.9831', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '990.0000', '990.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (655, NULL, NULL, 311, 'C-M-SB-0001', 'C Side Bag', NULL, '1290.0000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '1522.2000', '1522.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (656, NULL, NULL, 312, 'C-M-SB-0002', 'C Side Bag', NULL, '1290.0000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '1522.2000', '1522.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (657, NULL, NULL, 313, 'C-M-SB-0003', 'C Side Bag', NULL, '1290.0000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '1522.2000', '1522.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (658, NULL, NULL, 314, 'C-M-SB-0004', 'C Side Bag', NULL, '1090.0000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '1286.2000', '1286.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (659, NULL, NULL, 316, 'C-W-WLB-0002', 'C Ladies Bag', NULL, '838.9831', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '990.0000', '990.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (660, NULL, NULL, 317, 'C-W-WLB-0003', 'C Ladies Bag', NULL, '1567.7966', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '1850.0000', '1850.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (661, NULL, NULL, 318, 'C-W-WLB-0004', 'C Ladies Bag', NULL, '1991.5254', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2018-11-19', 'received', '2350.0000', '2350.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (662, NULL, NULL, 319, 'JI-M-IB-0002', 'JI Imoported Belt', NULL, '1398.3051', '6.0000', 1, '1510.1695', 5, '18.0000%', NULL, NULL, NULL, '9900.0000', '0.0000', '2018-11-24', 'received', '1650.0000', '1650.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (663, NULL, NULL, 320, 'JI-M-IB-0003', 'JI Imoported Belt', NULL, '1398.3051', '6.0000', 1, '1510.1695', 5, '18.0000%', NULL, NULL, NULL, '9900.0000', '0.0000', '2018-11-24', 'received', '1650.0000', '1650.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (664, NULL, NULL, 321, 'JI-M-ILB-0102-66', 'JI Italian L Belt-Lineing', NULL, '1228.8136', '3.0000', 1, '663.5593', 5, '18.0000%', NULL, NULL, NULL, '4350.0000', '0.0000', '2018-11-24', 'received', '1450.0000', '1450.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (665, NULL, NULL, 322, 'JI-M-ILB-0104-53', 'JI Italian L Belt-Cobra', NULL, '1313.5593', '3.0000', 1, '709.3220', 5, '18.0000%', NULL, NULL, NULL, '4650.0000', '0.0000', '2018-11-24', 'received', '1550.0000', '1550.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (666, NULL, NULL, 323, 'JI-M-IB-0004', 'JI Imoported Belt', NULL, '1059.3220', '9.0000', 1, '1716.1017', 5, '18.0000%', NULL, NULL, NULL, '11250.0000', '9.0000', '2018-11-24', 'received', '1250.0000', '1250.0000', '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (667, NULL, NULL, 324, 'JI-M-IB-0005', 'JI Imoported Belt', NULL, '720.3390', '5.0000', 1, '648.3051', 5, '18.0000%', NULL, NULL, NULL, '4250.0000', '0.0000', '2018-11-24', 'received', '850.0000', '850.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (668, NULL, NULL, 325, 'JI-M-IB-0006', 'JI Imoported Belt', NULL, '805.0847', '6.0000', 1, '869.4915', 5, '18.0000%', NULL, NULL, NULL, '5700.0000', '0.0000', '2018-11-24', 'received', '950.0000', '950.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (669, NULL, NULL, 326, 'JI-M-IB-0007', 'JI Imoported Belt', NULL, '635.5932', '1.0000', 1, '114.4068', 5, '18.0000%', NULL, NULL, NULL, '750.0000', '0.0000', '2018-11-24', 'received', '750.0000', '750.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (670, NULL, NULL, 327, 'JI-M-IB-0009', 'JI Imoported Belt', NULL, '296.6102', '18.0000', 1, '961.0169', 5, '18.0000%', NULL, NULL, NULL, '6300.0000', '0.0000', '2018-11-24', 'received', '350.0000', '350.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (671, NULL, NULL, 328, 'JI-M-IB-0010', 'JI Imoported Belt', NULL, '296.6102', '16.0000', 1, '854.2373', 5, '18.0000%', NULL, NULL, NULL, '5600.0000', '0.0000', '2018-11-24', 'received', '350.0000', '350.0000', '16.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (678, NULL, NULL, 336, 'JI-M-TS-0001', 'JI T Shirt', NULL, '650.0000', '20.0000', 1, '2340.0000', 5, '18.0000%', NULL, NULL, NULL, '15340.0000', '20.0000', '2018-12-06', 'received', '767.0000', '767.0000', '20.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (680, NULL, NULL, 337, 'JI-M-OB-000005-1', 'JI Office Bag-Black', NULL, '3262.7119', '5.0000', 1, '2936.4407', 5, '18.0000%', NULL, NULL, NULL, '19250.0000', '5.0000', '2018-12-12', 'received', '3850.0000', '3850.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (681, NULL, NULL, 338, 'JI-M-OB-000005-4', 'JI Office Bag-Tan', NULL, '3262.7119', '5.0000', 1, '2936.4407', 5, '18.0000%', NULL, NULL, NULL, '19250.0000', '5.0000', '2018-12-12', 'received', '3850.0000', '3850.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (682, NULL, NULL, 339, 'JI-M-OB-000005-3', 'JI Office Bag-Brown', NULL, '3262.7119', '10.0000', 1, '5872.8814', 5, '18.0000%', NULL, NULL, NULL, '38500.0000', '10.0000', '2018-12-12', 'received', '3850.0000', '3850.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (683, NULL, NULL, 340, 'G7-M-KW-0001', 'G7 Key Wallet', NULL, '296.6102', '35.0000', 1, '1868.6441', 5, '18.0000%', NULL, NULL, NULL, '12250.0000', '35.0000', '2018-12-14', 'received', '350.0000', '350.0000', '35.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (684, NULL, NULL, 341, 'G7-M-KW-0002', 'G7 Key Wallet', NULL, '322.0339', '11.0000', 1, '637.6271', 5, '18.0000%', NULL, NULL, NULL, '4180.0000', '11.0000', '2018-12-14', 'received', '380.0000', '380.0000', '11.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (685, NULL, NULL, 263, 'G7-M-CHB-0001', 'G7 Chest Bag', NULL, '847.4576', '5.0000', 1, '152.5424', 5, '18%', NULL, NULL, NULL, '5000.0000', '5.0000', '2018-12-14', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '762.7120');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (686, NULL, NULL, 266, 'G7-M-SLB-0001', 'G7 Sling Bag', NULL, '847.4576', '4.0000', 1, '152.5424', 5, '18%', NULL, NULL, NULL, '4000.0000', '4.0000', '2018-12-14', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '610.1696');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (687, NULL, NULL, 267, 'G7-M-SLB-0002', 'G7 Sling Bag', NULL, '847.4576', '5.0000', 1, '152.5424', 5, '18%', NULL, NULL, NULL, '5000.0000', '5.0000', '2018-12-14', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '762.7120');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (688, NULL, NULL, 268, 'G7-M-LWLT-0033', 'G7 Zebru Wallet', NULL, '847.4576', '6.0000', 1, '152.5424', 5, '18%', NULL, NULL, NULL, '6000.0000', '6.0000', '2018-12-14', 'received', '1000.0000', '1000.0000', '6.0000', NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '915.2544');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (689, NULL, NULL, 269, 'G7-M-LWLT-0034', 'G7 Mens Wallet', NULL, '635.5932', '2.0000', 1, '114.4068', 5, '18%', NULL, NULL, NULL, '1500.0000', '2.0000', '2018-12-14', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '228.8136');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (690, NULL, NULL, 272, 'G7-M-LWLT-0036', 'G7 Leather Wallet', NULL, '847.4576', '119.0000', 1, '152.5424', 5, '18%', NULL, NULL, NULL, '119000.0000', '119.0000', '2018-12-14', 'received', '1000.0000', '1000.0000', '119.0000', NULL, NULL, 2, 'PCS', '119.0000', '18%', '0.0000', '0.0000', '18152.5456');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (691, NULL, NULL, 342, 'G7-M-KW-0003', 'G7 Key Wallet', NULL, '338.9831', '10.0000', 1, '610.1695', 5, '18.0000%', NULL, NULL, NULL, '4000.0000', '10.0000', '2018-12-14', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (692, NULL, NULL, 343, 'G7-BSB-001', 'BLACK SMALL BOX', NULL, '13.0000', '2000.0000', 1, '3120.0000', 4, '12.0000%', NULL, NULL, NULL, '29120.0000', '2000.0000', '2018-12-20', 'received', '14.5600', '14.5600', '2000.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (693, NULL, NULL, 344, 'G7-BBB-001', 'BLACK BIG BOX', NULL, '20.0000', '2.0000', 1, '4.8000', 4, '12.0000%', NULL, NULL, NULL, '44.8000', '2.0000', '2018-12-20', 'received', '22.4000', '22.4000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (694, NULL, NULL, 345, 'G7-RBB-001', 'RED BIG BOX', NULL, '38.0000', '500.0000', 1, '2280.0000', 4, '12.0000%', NULL, NULL, NULL, '21280.0000', '500.0000', '2018-12-20', 'received', '42.5600', '42.5600', '500.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (695, 19, NULL, 343, 'G7-BSB-001', 'BLACK SMALL BOX', NULL, '13.0000', '2000.0000', 1, '3120.0000', 4, '12%', '0', '0.0000', NULL, '29120.0000', '2000.0000', '2018-12-20', 'received', '14.5600', '13.0000', '2000.0000', NULL, NULL, 2, 'PCS', '2000.0000', '12%', '0.0000', '0.0000', '3120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (696, 19, NULL, 344, 'G7-BBB-001', 'BLACK BIG BOX', NULL, '20.0000', '2000.0000', 1, '4800.0000', 4, '12%', '0', '0.0000', NULL, '44800.0000', '2000.0000', '2018-12-20', 'received', '22.4000', '20.0000', '2000.0000', NULL, NULL, 2, 'PCS', '2000.0000', '12%', '0.0000', '0.0000', '4800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (697, 19, NULL, 345, 'G7-RBB-001', 'RED BIG BOX', NULL, '38.0000', '500.0000', 1, '2280.0000', 4, '12%', '0', '0.0000', NULL, '21280.0000', '500.0000', '2018-12-20', 'received', '42.5600', '38.0000', '500.0000', NULL, NULL, 2, 'PCS', '500.0000', '12%', '0.0000', '0.0000', '2280.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (698, NULL, NULL, 346, 'G7-M-LWLT-0038-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-20', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (699, NULL, NULL, 347, 'G7-M-LWLT-0038-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-20', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (700, NULL, NULL, 348, 'G7-M-LWLT-0038-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-20', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (701, NULL, NULL, 349, 'G7-M-LWLT-0039-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-20', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (702, NULL, NULL, 350, 'G7-M-LWLT-0039-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-20', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (703, NULL, NULL, 351, 'G7-M-LWLT-0039-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-20', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (704, NULL, NULL, 352, 'G7-M-LWLT-0040-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-21', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (705, NULL, NULL, 353, 'G7-M-LWLT-0040-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-21', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (706, NULL, NULL, 354, 'G7-M-LWLT-0040-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-21', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (707, NULL, NULL, 355, 'G7-M-LWLT-0041-3', 'G7 Leather Wallet-BROWN', NULL, '669.4915', '44.0000', 1, '5302.3729', 5, '18.0000%', NULL, NULL, NULL, '34760.0000', '41.0000', '2018-12-22', 'received', '790.0000', '790.0000', '44.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (708, NULL, NULL, 356, 'G7-M-LWLT-0042-3', 'G7 Leather Wallet-BROWN', NULL, '584.7458', '21.0000', 1, '2210.3390', 5, '18.0000%', NULL, NULL, NULL, '14490.0000', '20.0000', '2018-12-22', 'received', '690.0000', '690.0000', '21.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (709, NULL, NULL, 357, 'G7-M-LWLT-0042-1', 'G7 Leather Wallet-BLACK', NULL, '584.7458', '21.0000', 1, '2210.3390', 5, '18.0000%', NULL, NULL, NULL, '14490.0000', '21.0000', '2018-12-22', 'received', '690.0000', '690.0000', '21.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (710, NULL, NULL, 358, 'G7-M-LWLT-0043-1', 'G7 Leather Wallet-BLACK', NULL, '669.4915', '18.0000', 1, '2169.1525', 5, '18.0000%', NULL, NULL, NULL, '14220.0000', '18.0000', '2018-12-22', 'received', '790.0000', '790.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (711, NULL, NULL, 359, 'G7-M-LWLT-0043-3', 'G7 Leather Wallet-BROWN', NULL, '669.4915', '18.0000', 1, '2169.1525', 5, '18.0000%', NULL, NULL, NULL, '14220.0000', '19.0000', '2018-12-22', 'received', '790.0000', '790.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (712, NULL, NULL, 360, 'G7-M-LWLT-0043-4', 'G7 Leather Wallet-TAN', NULL, '669.4915', '18.0000', 1, '2169.1525', 5, '18.0000%', NULL, NULL, NULL, '14220.0000', '21.0000', '2018-12-22', 'received', '790.0000', '790.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (713, NULL, NULL, 361, 'G7-M-LWLT-0044-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-22', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (714, NULL, NULL, 362, 'G7-M-LWLT-0044-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2018-12-22', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (715, 1, NULL, 163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 403, '2332.0000', '10.0000', 1, '4197.6000', 5, '18%', '0', '0.0000', NULL, '27517.6000', '2.0000', '2018-10-24', 'received', '2751.7600', '2751.7600', '10.0000', NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '4197.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (716, 1, NULL, 163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 402, '2332.0000', '10.0000', 1, '4197.6000', 5, '18%', '0', '0.0000', NULL, '27517.6000', '5.0000', '2018-10-24', 'received', '2751.7600', '2751.7600', '10.0000', NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '4197.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (717, 1, NULL, 163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 401, '2332.0000', '10.0000', 1, '4197.6000', 5, '18%', '0', '0.0000', NULL, '27517.6000', '2.0000', '2018-10-24', 'received', '2751.7600', '2751.7600', '10.0000', NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '4197.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (718, NULL, NULL, 363, 'G7-W-LB-0014', 'G7 Ladies Bag', NULL, '1686.4407', '5.0000', 1, '1517.7966', 5, '18.0000%', NULL, NULL, NULL, '9950.0000', '5.0000', '2018-12-31', 'received', '1990.0000', '1990.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (719, NULL, NULL, 364, 'G7-W-LB-0015', 'G7 Ladies Bag', NULL, '1686.4407', '2.0000', 1, '607.1186', 5, '18.0000%', NULL, NULL, NULL, '3980.0000', '2.0000', '2018-12-31', 'received', '1990.0000', '1990.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (720, NULL, NULL, 365, 'G7-W-LB-0016', 'G7 Ladies Bag', NULL, '1601.6949', '3.0000', 1, '864.9153', 5, '18.0000%', NULL, NULL, NULL, '5670.0000', '3.0000', '2018-12-31', 'received', '1890.0000', '1890.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (721, NULL, NULL, 366, 'G7-W-LB-0017', 'G7 Ladies Bag', NULL, '1093.2203', '5.0000', 1, '983.8983', 5, '18.0000%', NULL, NULL, NULL, '6450.0000', '5.0000', '2018-12-31', 'received', '1290.0000', '1290.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (722, NULL, NULL, 367, 'G7-W-LB-0018', 'G7 Ladies Bag', NULL, '923.7288', '2.0000', 1, '332.5424', 5, '18.0000%', NULL, NULL, NULL, '2180.0000', '2.0000', '2018-12-31', 'received', '1090.0000', '1090.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (723, NULL, NULL, 369, 'G7-W-LB-0019', 'G7 Ladies Bag', NULL, '923.7288', '2.0000', 1, '332.5424', 5, '18.0000%', NULL, NULL, NULL, '2180.0000', '2.0000', '2018-12-31', 'received', '1090.0000', '1090.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (724, NULL, NULL, 370, 'G7-W-LB-0020', 'G7 Ladies Bag', NULL, '838.9831', '6.0000', 1, '906.1017', 5, '18.0000%', NULL, NULL, NULL, '5940.0000', '6.0000', '2018-12-31', 'received', '990.0000', '990.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (725, NULL, NULL, 371, 'G7-W-LB-0021', 'G7 Ladies Bag', NULL, '1686.4407', '3.0000', 1, '910.6780', 5, '18.0000%', NULL, NULL, NULL, '5970.0000', '3.0000', '2018-12-31', 'received', '1990.0000', '1990.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (726, NULL, NULL, 372, 'G7-W-LB-0022', 'G7 Ladies Bag', NULL, '669.4915', '4.0000', 1, '482.0339', 5, '18.0000%', NULL, NULL, NULL, '3160.0000', '4.0000', '2018-12-31', 'received', '790.0000', '790.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (727, NULL, NULL, 373, 'G7-W-LB-0023', 'G7 Ladies Bag', NULL, '1228.8136', '2.0000', 1, '442.3729', 5, '18.0000%', NULL, NULL, NULL, '2900.0000', '2.0000', '2018-12-31', 'received', '1450.0000', '1450.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (728, NULL, NULL, 374, 'G7-W-LB-0024', 'G7 Ladies Bag', NULL, '1686.4407', '2.0000', 1, '607.1186', 5, '18.0000%', NULL, NULL, NULL, '3980.0000', '2.0000', '2018-12-31', 'received', '1990.0000', '1990.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (729, NULL, NULL, 375, 'G7-W-LB-0025', 'G7 Ladies Bag', NULL, '1567.7966', '2.0000', 1, '564.4068', 5, '18.0000%', NULL, NULL, NULL, '3700.0000', '2.0000', '2018-12-31', 'received', '1850.0000', '1850.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (730, NULL, NULL, 376, 'G7-W-LB-0026', 'G7 Ladies Bag', NULL, '1593.2203', '4.0000', 1, '1147.1186', 5, '18.0000%', NULL, NULL, NULL, '7520.0000', '4.0000', '2018-12-31', 'received', '1880.0000', '1880.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (731, NULL, NULL, 377, 'G7-W-LB-0027', 'G7 Ladies Bag', NULL, '890.0000', '4.0000', 1, '0.0000', 1, '0.0000', NULL, NULL, NULL, '3560.0000', '4.0000', '2018-12-31', 'received', '890.0000', '890.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (732, NULL, NULL, 378, 'G7-W-LB-0028', 'G7 Ladies Bag', NULL, '805.0847', '5.0000', 1, '724.5763', 5, '18.0000%', NULL, NULL, NULL, '4750.0000', '5.0000', '2018-12-31', 'received', '950.0000', '950.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (733, NULL, NULL, 379, 'G7-W-LB-0029', 'G7 Ladies Bag', NULL, '1940.6780', '1.0000', 1, '349.3220', 5, '18.0000%', NULL, NULL, NULL, '2290.0000', '1.0000', '2018-12-31', 'received', '2290.0000', '2290.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (734, NULL, NULL, 380, 'G7-W-LB-0030', 'G7 Ladies Bag', NULL, '1601.6949', '5.0000', 1, '1441.5254', 5, '18.0000%', NULL, NULL, NULL, '9450.0000', '10.0000', '2018-12-31', 'received', '1890.0000', '1890.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (735, NULL, NULL, 381, 'G7-W-LB-0031', 'G7 Ladies Bag', NULL, '1686.4407', '7.0000', 1, '2124.9153', 5, '18.0000%', NULL, NULL, NULL, '13930.0000', '7.0000', '2018-12-31', 'received', '1990.0000', '1990.0000', '7.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (736, NULL, NULL, 382, 'G7-W-LB-0032', 'G7 Ladies Bag', NULL, '1008.4746', '7.0000', 1, '1270.6780', 5, '18.0000%', NULL, NULL, NULL, '8330.0000', '7.0000', '2018-12-31', 'received', '1190.0000', '1190.0000', '7.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (737, NULL, NULL, 383, 'G7-W-LB-0033', 'G7 Ladies Bag', NULL, '1338.9831', '1.0000', 1, '241.0169', 5, '18.0000%', NULL, NULL, NULL, '1580.0000', '1.0000', '2018-12-31', 'received', '1580.0000', '1580.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (738, NULL, NULL, 384, 'G7-W-LB-0034', 'G7 Ladies Bag', NULL, '1516.9492', '1.0000', 1, '273.0508', 5, '18.0000%', NULL, NULL, NULL, '1790.0000', '1.0000', '2018-12-31', 'received', '1790.0000', '1790.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (739, NULL, NULL, 385, 'G7-W-LB-0035', 'G7 Ladies Bag', NULL, '1093.2203', '8.0000', 1, '1574.2373', 5, '18.0000%', NULL, NULL, NULL, '10320.0000', '8.0000', '2018-12-31', 'received', '1290.0000', '1290.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (740, NULL, NULL, 386, 'G7-W-LB-0036', 'G7 Ladies Bag', NULL, '838.9831', '11.0000', 1, '1661.1864', 5, '18.0000%', NULL, NULL, NULL, '10890.0000', '11.0000', '2018-12-31', 'received', '990.0000', '990.0000', '11.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (741, NULL, NULL, 387, 'G7-W-LB-0037', 'G7 Ladies Bag', NULL, '2025.4237', '3.0000', 1, '1093.7288', 5, '18.0000%', NULL, NULL, NULL, '7170.0000', '3.0000', '2018-12-31', 'received', '2390.0000', '2390.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (742, NULL, NULL, 388, 'G7-W-LB-0038', 'G7 Ladies Bag', NULL, '1067.7966', '2.0000', 1, '384.4068', 5, '18.0000%', NULL, NULL, NULL, '2520.0000', '2.0000', '2018-12-31', 'received', '1260.0000', '1260.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (743, NULL, NULL, 389, 'G7-W-LB-0039', 'G7 Ladies Bag', NULL, '1313.5593', '1.0000', 1, '236.4407', 5, '18.0000%', NULL, NULL, NULL, '1550.0000', '1.0000', '2018-12-31', 'received', '1550.0000', '1550.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (744, NULL, NULL, 390, 'G7-W-LB-0040', 'G7 Ladies Bag', NULL, '991.5254', '3.0000', 1, '535.4237', 5, '18.0000%', NULL, NULL, NULL, '3510.0000', '3.0000', '2018-12-31', 'received', '1170.0000', '1170.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (745, NULL, NULL, 391, 'JI-M-ILB-103', 'JI Italian L Belt', NULL, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2019-01-01', 'received', '1250.0000', '1250.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (746, NULL, NULL, 392, 'G7-W-LB-0041', 'G7 Ladies Bag', NULL, '1686.4407', '5.0000', 1, '1517.7966', 5, '18.0000%', NULL, NULL, NULL, '9950.0000', '5.0000', '2019-01-01', 'received', '1990.0000', '1990.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (747, NULL, NULL, 393, 'G7-W-LB-0042', 'G7 Ladies Bag', NULL, '737.2881', '3.0000', 1, '398.1356', 5, '18.0000%', NULL, NULL, NULL, '2610.0000', '3.0000', '2019-01-01', 'received', '870.0000', '870.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (748, NULL, NULL, 394, 'G7-W-LB-0043', 'G7 Ladies Bag', NULL, '1601.6949', '4.0000', 1, '1153.2203', 5, '18.0000%', NULL, NULL, NULL, '7560.0000', '4.0000', '2019-01-01', 'received', '1890.0000', '1890.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (749, NULL, NULL, 395, 'G7-W-LB-0044', 'G7 Ladies Bag', NULL, '1254.2373', '4.0000', 1, '903.0508', 5, '18.0000%', NULL, NULL, NULL, '5920.0000', '4.0000', '2019-01-01', 'received', '1480.0000', '1480.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (750, NULL, NULL, 396, 'G7-W-LB-0045', 'G7 Ladies Bag', NULL, '1347.4576', '1.0000', 1, '242.5424', 5, '18.0000%', NULL, NULL, NULL, '1590.0000', '1.0000', '2019-01-01', 'received', '1590.0000', '1590.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (751, NULL, NULL, 397, 'G7-W-LB-0046', 'G7 Ladies Bag', NULL, '1432.2034', '1.0000', 1, '257.7966', 5, '18.0000%', NULL, NULL, NULL, '1690.0000', '1.0000', '2019-01-01', 'received', '1690.0000', '1690.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (752, NULL, NULL, 398, 'G7-W-LB-0047', 'G7 Ladies Bag', NULL, '1432.2034', '1.0000', 1, '257.7966', 5, '18.0000%', NULL, NULL, NULL, '1690.0000', '1.0000', '2019-01-01', 'received', '1690.0000', '1690.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (753, NULL, NULL, 399, 'G7-W-LB-0048', 'G7 Ladies Bag', NULL, '1262.7119', '1.0000', 1, '227.2881', 5, '18.0000%', NULL, NULL, NULL, '1490.0000', '1.0000', '2019-01-01', 'received', '1490.0000', '1490.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (754, NULL, NULL, 400, 'G7-W-LB-0049', 'G7 Ladies Bag', NULL, '1093.2203', '1.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '1.0000', '2019-01-01', 'received', '1290.0000', '1290.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (755, NULL, NULL, 401, 'G7-M-SLP-0006-01', 'G7 Slipper-black', NULL, '540.0000', '60.0000', 1, '5832.0000', 5, '18.0000%', NULL, NULL, NULL, '38232.0000', '6.0000', '2019-01-12', 'received', '637.2000', '637.2000', '60.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (756, NULL, NULL, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown', NULL, '540.0000', '60.0000', 1, '5832.0000', 5, '18.0000%', NULL, NULL, NULL, '38232.0000', '14.0000', '2019-01-12', 'received', '637.2000', '637.2000', '60.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (757, NULL, NULL, 403, 'G7-M-SLP-0007-01', 'G7 Slipper-black', NULL, '500.0000', '60.0000', 1, '5400.0000', 5, '18.0000%', NULL, NULL, NULL, '35400.0000', '7.0000', '2019-01-12', 'received', '590.0000', '590.0000', '60.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (758, NULL, NULL, 404, 'G7-M-SLP-0007-03', 'G7 Slipper-brown', NULL, '500.0000', '60.0000', 1, '5400.0000', 5, '18.0000%', NULL, NULL, NULL, '35400.0000', '0.0000', '2019-01-12', 'received', '590.0000', '590.0000', '60.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (763, 20, NULL, 401, 'G7-M-SLP-0006-01', 'G7 Slipper-black', NULL, '540.0000', '60.0000', 1, '5832.0000', 5, '18%', '0', '0.0000', NULL, '38232.0000', '16.0000', '2019-01-08', 'received', '637.2000', '540.0000', '60.0000', NULL, NULL, 2, 'PCS', '60.0000', '18%', '0.0000', '0.0000', '5832.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (764, 20, NULL, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown', NULL, '540.0000', '60.0000', 1, '5832.0000', 5, '18%', '0', '0.0000', NULL, '38232.0000', '10.0000', '2019-01-08', 'received', '637.2000', '540.0000', '60.0000', NULL, NULL, 2, 'PCS', '60.0000', '18%', '0.0000', '0.0000', '5832.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (765, 20, NULL, 403, 'G7-M-SLP-0007-01', 'G7 Slipper-black', NULL, '500.0000', '60.0000', 1, '5400.0000', 5, '18%', '0', '0.0000', NULL, '35400.0000', '23.0000', '2019-01-08', 'received', '590.0000', '500.0000', '60.0000', NULL, NULL, 2, 'PCS', '60.0000', '18%', '0.0000', '0.0000', '5400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (766, 20, NULL, 404, 'G7-M-SLP-0007-03', 'G7 Slipper-brown', NULL, '500.0000', '60.0000', 1, '5400.0000', 5, '18%', '0', '0.0000', NULL, '35400.0000', '29.0000', '2019-01-08', 'received', '590.0000', '500.0000', '60.0000', NULL, NULL, 2, 'PCS', '60.0000', '18%', '0.0000', '0.0000', '5400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (770, NULL, NULL, 405, 'G7-M-SLP-0007-07', 'G7 Slipper-black=7', NULL, '1990.0000', '48.0000', 1, '17193.6000', 5, '18.0000%', NULL, NULL, NULL, '112713.6000', '48.0000', '2019-01-16', 'received', '2348.2000', '2348.2000', '48.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (771, NULL, NULL, 405, 'G7-W-LB-0050', 'G7 Ladies Bag', NULL, '1850.0000', '7.0000', 1, '2331.0000', 5, '18.0000%', NULL, NULL, NULL, '15281.0000', '-41.0000', '2019-01-29', 'received', '2183.0000', '2183.0000', '7.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (772, NULL, NULL, 406, 'G7-M-OB-0006', 'G7 Office Bag', NULL, '2200.0000', '6.0000', 1, '2376.0000', 5, '18.0000%', NULL, NULL, NULL, '15576.0000', '6.0000', '2019-01-29', 'received', '2596.0000', '2596.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (776, NULL, NULL, 263, 'G7-M-CHB-0001', 'G7 Chest Bag', NULL, '847.4576', '-5.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '-5000.0000', '-5.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '-5.0000', NULL, NULL, 2, 'PCS', '-5.0000', '18%', '0.0000', '0.0000', '-762.7120');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (777, NULL, NULL, 266, 'G7-M-SLB-0001', 'G7 Sling Bag', NULL, '847.4576', '-4.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '-4000.0000', '-4.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '-4.0000', NULL, NULL, 2, 'PCS', '-4.0000', '18%', '0.0000', '0.0000', '-610.1696');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (778, NULL, NULL, 267, 'G7-M-SLB-0002', 'G7 Sling Bag', NULL, '847.4576', '-5.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '-5000.0000', '-5.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '-5.0000', NULL, NULL, 2, 'PCS', '-5.0000', '18%', '0.0000', '0.0000', '-762.7120');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (779, NULL, NULL, 268, 'G7-M-LWLT-0033', 'G7 Zebru Wallet', NULL, '847.4576', '-6.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '-6000.0000', '-6.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '-6.0000', NULL, NULL, 2, 'PCS', '-6.0000', '18%', '0.0000', '0.0000', '-915.2544');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (780, NULL, NULL, 269, 'G7-M-LWLT-0034', 'G7 Mens Wallet', NULL, '635.5932', '-2.0000', 0, '114.4068', 5, '18%', NULL, NULL, NULL, '-1500.0000', '-2.0000', '2019-01-31', 'received', '750.0000', '750.0000', '-2.0000', NULL, NULL, 2, 'PCS', '-2.0000', '18%', '0.0000', '0.0000', '-228.8136');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (781, NULL, NULL, 272, 'G7-M-LWLT-0036', 'G7 Leather Wallet', NULL, '847.4576', '-119.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '-119000.0000', '-119.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '-119.0000', NULL, NULL, 2, 'PCS', '-119.0000', '18%', '0.0000', '0.0000', '-18152.5456');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (782, NULL, NULL, 263, 'G7-M-CHB-0001', 'G7 Chest Bag', NULL, '847.4576', '5.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '5000.0000', '5.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '762.7120');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (783, NULL, NULL, 266, 'G7-M-SLB-0001', 'G7 Sling Bag', NULL, '847.4576', '4.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '4000.0000', '4.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '610.1696');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (784, NULL, NULL, 267, 'G7-M-SLB-0002', 'G7 Sling Bag', NULL, '847.4576', '5.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '5000.0000', '5.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '762.7120');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (785, NULL, NULL, 268, 'G7-M-LWLT-0033', 'G7 Zebru Wallet', NULL, '847.4576', '6.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '6000.0000', '6.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '6.0000', NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '915.2544');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (786, NULL, NULL, 269, 'G7-M-LWLT-0034', 'G7 Mens Wallet', NULL, '635.5932', '2.0000', 0, '114.4068', 5, '18%', NULL, NULL, NULL, '1500.0000', '2.0000', '2019-01-31', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '228.8136');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (787, NULL, NULL, 272, 'G7-M-LWLT-0036', 'G7 Leather Wallet', NULL, '847.4576', '119.0000', 0, '152.5424', 5, '18%', NULL, NULL, NULL, '119000.0000', '119.0000', '2019-01-31', 'received', '1000.0000', '1000.0000', '119.0000', NULL, NULL, 2, 'PCS', '119.0000', '18%', '0.0000', '0.0000', '18152.5456');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (788, NULL, NULL, 408, 'JI-M-ILB-104', 'JI Italian L Belt(Dimond Bkl)', NULL, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '12.0000', '2019-02-05', 'received', '1250.0000', '1250.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (789, NULL, NULL, 409, 'G7-M-LWLT-0045-4', 'G7 Leather Wallet-TAN', NULL, '838.9831', '22.0000', 1, '3322.3729', 5, '18.0000%', NULL, NULL, NULL, '21780.0000', '22.0000', '2019-02-05', 'received', '990.0000', '990.0000', '22.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (790, NULL, NULL, 410, 'G7-M-LWLT-0045-1', 'G7 Leather Wallet-BLACK', NULL, '838.9831', '20.0000', 1, '3020.3390', 5, '18.0000%', NULL, NULL, NULL, '19800.0000', '23.0000', '2019-02-05', 'received', '990.0000', '990.0000', '20.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (791, NULL, NULL, 411, 'G7-M-LWLT-0045-3', 'G7 Leather Wallet-BROWN', NULL, '838.9831', '19.0000', 1, '2869.3220', 5, '18.0000%', NULL, NULL, NULL, '18810.0000', '17.0000', '2019-02-05', 'received', '990.0000', '990.0000', '19.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (792, NULL, NULL, 412, 'G7-M-LWLT-0046-3', 'G7 Leather Wallet-BROWN', NULL, '838.9831', '14.0000', 1, '2114.2373', 5, '18.0000%', NULL, NULL, NULL, '13860.0000', '15.0000', '2019-02-06', 'received', '990.0000', '990.0000', '14.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (793, NULL, NULL, 413, 'G7-M-LWLT-0046-4', 'G7 Leather Wallet-Tan', NULL, '838.9831', '13.0000', 1, '1963.2203', 5, '18.0000%', NULL, NULL, NULL, '12870.0000', '13.0000', '2019-02-06', 'received', '990.0000', '990.0000', '13.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (794, NULL, NULL, 414, 'G7-M-LWLT-000246', 'G7 Leather Wallet-BLACK', NULL, '838.9831', '21.0000', 1, '3171.3559', 5, '18.0000%', NULL, NULL, NULL, '20790.0000', '21.0000', '2019-02-06', 'received', '990.0000', '990.0000', '21.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (795, NULL, NULL, 415, 'G7-M-LWLT-0046-6', 'G7 Leather Wallet-Green', NULL, '838.9831', '17.0000', 1, '2567.2881', 5, '18.0000%', NULL, NULL, NULL, '16830.0000', '17.0000', '2019-02-06', 'received', '990.0000', '990.0000', '17.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (796, NULL, NULL, 416, 'G7-M-LWLT-0046-5', 'G7 Leather Wallet-Blue', NULL, '838.9831', '16.0000', 1, '2416.2712', 5, '18.0000%', NULL, NULL, NULL, '15840.0000', '16.0000', '2019-02-06', 'received', '990.0000', '990.0000', '16.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (797, NULL, NULL, 417, 'G7-M-LWLT-0046-1', 'G7 Leather Wallet-BLACK', NULL, '838.9831', '21.0000', 1, '3171.3559', 5, '18.0000%', NULL, NULL, NULL, '20790.0000', '21.0000', '2019-02-06', 'received', '990.0000', '990.0000', '21.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (798, NULL, NULL, 418, 'G7-M-LWLT-0047-4', 'G7 Leather Wallet-TAN', NULL, '838.9831', '50.0000', 1, '7550.8475', 5, '18.0000%', NULL, NULL, NULL, '49500.0000', '50.0000', '2019-02-06', 'received', '990.0000', '990.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (799, NULL, NULL, 419, 'G7-M-LWLT-0047-1', 'G7 Leather Wallet-BLACK', NULL, '838.9831', '50.0000', 1, '7550.8475', 5, '18.0000%', NULL, NULL, NULL, '49500.0000', '50.0000', '2019-02-06', 'received', '990.0000', '990.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (800, NULL, NULL, 420, 'G7-M-LWLT-0047-3', 'G7 Leather Wallet-BROWN', NULL, '838.9831', '50.0000', 1, '7550.8475', 5, '18.0000%', NULL, NULL, NULL, '49500.0000', '50.0000', '2019-02-07', 'received', '990.0000', '990.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (801, NULL, NULL, 421, 'G7-M-LWLT-0048-3', 'G7 Leather Wallet-BROWN', NULL, '1313.5593', '38.0000', 1, '8984.7458', 5, '18.0000%', NULL, NULL, NULL, '58900.0000', '38.0000', '2019-02-07', 'received', '1550.0000', '1550.0000', '38.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (802, NULL, NULL, 422, 'G7-M-LWLT-0048-1', 'G7 Leather Wallet-BLACK', NULL, '1313.5593', '38.0000', 1, '8984.7458', 5, '18.0000%', NULL, NULL, NULL, '58900.0000', '38.0000', '2019-02-07', 'received', '1550.0000', '1550.0000', '38.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (803, NULL, NULL, 423, 'G7-M-LWLT-0048', 'G7 Leather Wallet', NULL, '1211.8644', '41.0000', 1, '8943.5593', 5, '18.0000%', NULL, NULL, NULL, '58630.0000', '40.0000', '2019-02-08', 'received', '1430.0000', '1430.0000', '41.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (804, NULL, NULL, 424, 'G7-M-PWLT-0003', 'G7 Passport Wallet', NULL, '1686.4407', '42.0000', 1, '12749.4915', 5, '18.0000%', NULL, NULL, NULL, '83580.0000', '30.0000', '2019-02-08', 'received', '1990.0000', '1990.0000', '42.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (805, NULL, NULL, 425, 'G7-M-PWLT-0004', 'G7 Passport Wallet', NULL, '1347.4576', '10.0000', 1, '2425.4237', 5, '18.0000%', NULL, NULL, NULL, '15900.0000', '10.0000', '2019-02-08', 'received', '1590.0000', '1590.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (806, NULL, NULL, 426, 'G7-M-LWLT-0044-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-09', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (807, NULL, NULL, 427, 'G7-M-LWLT-0049-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-09', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (808, NULL, NULL, 428, 'G7-M-LWLT-0049-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '48.0000', '2019-02-09', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (809, NULL, NULL, 429, 'G7-M-LWLT-0050-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-09', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (810, NULL, NULL, 430, 'G7-M-LWLT-0050-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-11', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (811, NULL, NULL, 431, 'G7-M-LWLT-0050-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-11', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (812, NULL, NULL, 432, 'G7-M-LWLT-0051-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-11', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (813, NULL, NULL, 433, 'G7-M-LWLT-0051-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-11', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (814, NULL, NULL, 434, 'G7-M-LWLT-0051-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-12', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (815, NULL, NULL, 435, 'JI-M-IB-0011', 'JI Imoported Belt', NULL, '1059.3220', '9.0000', 1, '1716.1017', 5, '18.0000%', NULL, NULL, NULL, '11250.0000', '12.0000', '2019-02-12', 'received', '1250.0000', '1250.0000', '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (816, NULL, NULL, 436, 'JI-M-IB-0012', 'JI Imoported Belt', NULL, '1059.3220', '9.0000', 1, '1716.1017', 5, '18.0000%', NULL, NULL, NULL, '11250.0000', '12.0000', '2019-02-13', 'received', '1250.0000', '1250.0000', '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (817, NULL, NULL, 437, 'JI-M-IB-0013', 'JI Imoported Belt', NULL, '1322.0339', '6.0000', 1, '1427.7966', 5, '18.0000%', NULL, NULL, NULL, '9360.0000', '0.0000', '2019-02-13', 'received', '1560.0000', '1560.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (818, NULL, NULL, 438, 'G7-M-LWLT-0050-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-15', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (819, NULL, NULL, 439, 'JI-M-IBLT-0104-48', 'JI Italian L Belt-IMPORTED Metro', NULL, '889.8305', '4.0000', 1, '640.6780', 5, '18.0000%', NULL, NULL, NULL, '4200.0000', '0.0000', '2019-02-15', 'received', '1050.0000', '1050.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (820, NULL, NULL, 440, 'JI-M-IBLT-0105-23', 'JI Italian L Belt-MAGIC', NULL, '1008.4746', '24.0000', 1, '4356.6102', 5, '18.0000%', NULL, NULL, NULL, '28560.0000', '12.0000', '2019-02-16', 'received', '1190.0000', '1190.0000', '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (821, NULL, NULL, 441, 'JI-M-IBLT-0106-24', 'JI Italian L Belt-Palmila', NULL, '1059.3220', '12.0000', 1, '2288.1356', 5, '18.0000%', NULL, NULL, NULL, '15000.0000', '6.0000', '2019-02-16', 'received', '1250.0000', '1250.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (822, NULL, NULL, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 408, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '6.0000', '2019-02-18', 'received', '1190.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (823, NULL, NULL, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 409, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2019-02-18', 'received', '1250.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (824, NULL, NULL, 442, 'G7-M-LWLT-0052-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-19', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (825, NULL, NULL, 443, 'G7-M-LWLT-0052-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-19', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (826, NULL, NULL, 444, 'G7-M-LWLT-0052-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-20', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (827, NULL, NULL, 445, 'c-W-WLB-0002', 'C  Ladies Bag ', NULL, '838.9831', '2.0000', 1, '302.0339', 5, '18.0000%', NULL, NULL, NULL, '1980.0000', '2.0000', '2019-02-21', 'received', '990.0000', '990.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (828, NULL, NULL, 446, 'c-W-WLB-0003', 'C  Ladies Bag ', NULL, '474.5763', '12.0000', 1, '1025.0847', 5, '18.0000%', NULL, NULL, NULL, '6720.0000', '12.0000', '2019-02-21', 'received', '560.0000', '560.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (829, NULL, NULL, 447, 'JI-M-IBLT-0107-29', 'JI Italian L Belt-metro', NULL, '1008.4746', '12.0000', 1, '2178.3051', 5, '18.0000%', NULL, NULL, NULL, '14280.0000', '12.0000', '2019-02-21', 'received', '1190.0000', '1190.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (830, NULL, NULL, 448, 'JI-M-IBLT-0107-19', 'JI Italian L Belt-evolution', NULL, '1008.4746', '12.0000', 1, '2178.3051', 5, '18.0000%', NULL, NULL, NULL, '14280.0000', '12.0000', '2019-02-21', 'received', '1190.0000', '1190.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (831, NULL, NULL, 449, 'JI-M-IBLT-0109-48', 'JI Italian L Belt-IMPORTED', NULL, '974.5763', '12.0000', 1, '2105.0847', 5, '18.0000%', NULL, NULL, NULL, '13800.0000', '12.0000', '2019-02-21', 'received', '1150.0000', '1150.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (832, NULL, NULL, 450, 'JI-M-IBLT-0110-48', 'JI Italian L Belt-IMPORTED', NULL, '974.5763', '12.0000', 1, '2105.0847', 5, '18.0000%', NULL, NULL, NULL, '13800.0000', '12.0000', '2019-02-21', 'received', '1150.0000', '1150.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (833, NULL, NULL, 451, 'JI-M-IBLT-0108-20', 'JI Italian L Belt-sunshine', NULL, '1008.4746', '12.0000', 1, '2178.3051', 5, '18.0000%', NULL, NULL, NULL, '14280.0000', '12.0000', '2019-02-22', 'received', '1190.0000', '1190.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (834, NULL, NULL, 452, 'G7-M-LWLT-0053-4', 'G7 Leather Wallet-TAN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-22', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (835, NULL, NULL, 453, 'G7-M-LWLT-0053-3', 'G7 Leather Wallet-BROWN', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-22', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (836, NULL, NULL, 454, 'G7-M-LWLT-0053-1', 'G7 Leather Wallet-BLACK', NULL, '711.8644', '50.0000', 1, '6406.7797', 5, '18.0000%', NULL, NULL, NULL, '42000.0000', '50.0000', '2019-02-22', 'received', '840.0000', '840.0000', '50.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (837, NULL, NULL, 455, 'JI-M-IBLT-0112-42', 'JI Italian L Belt-Tango', NULL, '1008.4746', '12.0000', 1, '2178.3051', 5, '18.0000%', NULL, NULL, NULL, '14280.0000', '12.0000', '2019-02-25', 'received', '1190.0000', '1190.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (838, NULL, NULL, 456, 'JI-M-IBLT-0114-24', 'JI Italian L Belt-Palmila', NULL, '1093.2203', '6.0000', 1, '1180.6780', 5, '18.0000%', NULL, NULL, NULL, '7740.0000', '6.0000', '2019-02-25', 'received', '1290.0000', '1290.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (839, NULL, NULL, 457, 'JI-M-IBLT-0114-19', 'JI Italian L Belt-Evolution', NULL, '1093.2203', '6.0000', 1, '1180.6780', 5, '18.0000%', NULL, NULL, NULL, '7740.0000', '6.0000', '2019-02-25', 'received', '1290.0000', '1290.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (840, NULL, NULL, 458, 'JI-M-IBLT-0112-26', 'JI Italian L Belt-Hony', NULL, '966.1017', '6.0000', 1, '1043.3898', 5, '18.0000%', NULL, NULL, NULL, '6840.0000', '6.0000', '2019-02-25', 'received', '1140.0000', '1140.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (841, NULL, NULL, 459, 'JI-M-IBLT-0114-23', 'JI Italian L Belt-MAGIC', NULL, '1050.8475', '6.0000', 1, '1134.9153', 5, '18.0000%', NULL, NULL, NULL, '7440.0000', '6.0000', '2019-02-25', 'received', '1240.0000', '1240.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (842, NULL, NULL, 460, 'JI-M-IBLT-0115-29', 'JI Italian L Belt-Metro', NULL, '1050.8475', '6.0000', 1, '1134.9153', 5, '18.0000%', NULL, NULL, NULL, '7440.0000', '6.0000', '2019-02-25', 'received', '1240.0000', '1240.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (843, NULL, NULL, 461, 'JI-M-IBLT-0115-41', 'JI Italian L Belt-Lce', NULL, '1050.8475', '6.0000', 1, '1134.9153', 5, '18.0000%', NULL, NULL, NULL, '7440.0000', '6.0000', '2019-02-25', 'received', '1240.0000', '1240.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (844, NULL, NULL, 462, 'JI-M-IBLT-0115-24', 'JI Italian L Belt-Palmila', NULL, '1050.8475', '6.0000', 1, '1134.9153', 5, '18.0000%', NULL, NULL, NULL, '7440.0000', '6.0000', '2019-02-25', 'received', '1240.0000', '1240.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (845, NULL, NULL, 463, 'JI-M-IBLT-0116-19', 'JI Italian L Belt-Evolution', NULL, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2019-02-25', 'received', '1250.0000', '1250.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (846, NULL, NULL, 464, 'JI-M-IBLT-0116-48', 'JI Italian L Belt-IMPORTED', NULL, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2019-02-25', 'received', '1250.0000', '1250.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (847, NULL, NULL, 465, 'JI-M-ISM-0005-42', 'JI Italian Steel Bkl-Tango', NULL, '1567.7966', '6.0000', 1, '1693.2203', 5, '18.0000%', NULL, NULL, NULL, '11100.0000', '6.0000', '2019-02-25', 'received', '1850.0000', '1850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (848, NULL, NULL, 466, 'JI-M-ISM-0005-49', 'JI Italian Steel Bkl-IMP Magic', NULL, '1567.7966', '6.0000', 1, '1693.2203', 5, '18.0000%', NULL, NULL, NULL, '11100.0000', '6.0000', '2019-02-25', 'received', '1850.0000', '1850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (849, NULL, NULL, 467, 'JI-M-ISM-0006-21', 'JI Italian Steel Bkl-Envy Tan', NULL, '1567.7966', '6.0000', 1, '1693.2203', 5, '18.0000%', NULL, NULL, NULL, '11100.0000', '6.0000', '2019-02-25', 'received', '1850.0000', '1850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (850, NULL, NULL, 468, 'JI-M-ISM-0007-26', 'JI Italian Steel Bkl-Hony', NULL, '1567.7966', '6.0000', 1, '1693.2203', 5, '18.0000%', NULL, NULL, NULL, '11100.0000', '6.0000', '2019-02-25', 'received', '1850.0000', '1850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (851, NULL, NULL, 469, 'JI-M-IBLT-0117-42', 'JI Italian L Belt-Tango', NULL, '1262.7119', '12.0000', 1, '2727.4576', 5, '18.0000%', NULL, NULL, NULL, '17880.0000', '12.0000', '2019-02-26', 'received', '1490.0000', '1490.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (852, NULL, NULL, 470, 'JI-M-IBLT-0117-29', 'JI Italian L Belt-Metro', NULL, '1262.7119', '18.0000', 1, '4091.1864', 5, '18.0000%', NULL, NULL, NULL, '26820.0000', '18.0000', '2019-02-26', 'received', '1490.0000', '1490.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (853, NULL, NULL, 471, 'JI-M-IBLT-0118-42', 'JI Italian L Belt-Tango', NULL, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '6.0000', '2019-02-26', 'received', '1190.0000', '1190.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (854, NULL, NULL, 472, 'JI-M-IBLT-0118-28', 'JI Italian L Belt-Galan', NULL, '1008.4746', '12.0000', 1, '2178.3051', 5, '18.0000%', NULL, NULL, NULL, '14280.0000', '12.0000', '2019-02-26', 'received', '1190.0000', '1190.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (855, NULL, NULL, 473, 'JI-M-IBLT-0119-48', 'JI Italian L Belt-IMPORTED', NULL, '1008.4746', '24.0000', 1, '4356.6102', 5, '18.0000%', NULL, NULL, NULL, '28560.0000', '24.0000', '2019-02-26', 'received', '1190.0000', '1190.0000', '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (856, NULL, NULL, 474, 'JI-M-IBLT-0120-42', 'JI Italian L Belt-Tango', NULL, '1084.7458', '12.0000', 1, '2343.0508', 5, '18.0000%', NULL, NULL, NULL, '15360.0000', '12.0000', '2019-02-26', 'received', '1280.0000', '1280.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (857, NULL, NULL, 475, 'JI-M-IBLT-0120-29', 'JI Italian L Belt-Metro', NULL, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '6.0000', '2019-02-26', 'received', '1280.0000', '1280.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (858, NULL, NULL, 476, 'JI-M-IBLT-0121-23', 'JI Italian L Belt-MAGIC', NULL, '1008.4746', '12.0000', 1, '2178.3051', 5, '18.0000%', NULL, NULL, NULL, '14280.0000', '12.0000', '2019-02-26', 'received', '1190.0000', '1190.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (859, NULL, NULL, 477, 'JI-M-IBLT-0121-41', 'JI Italian L Belt-Lce', NULL, '1008.4746', '12.0000', 1, '2178.3051', 5, '18.0000%', NULL, NULL, NULL, '14280.0000', '12.0000', '2019-02-26', 'received', '1190.0000', '1190.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (860, NULL, NULL, 478, 'JI-M-IBLT-0119-49', 'JI Italian L Belt-IMPORTED Magic', NULL, '1059.3220', '27.0000', 1, '5148.3051', 5, '18.0000%', NULL, NULL, NULL, '33750.0000', '27.0000', '2019-02-26', 'received', '1250.0000', '1250.0000', '27.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (861, NULL, NULL, 479, 'JI-M-IBLT-0123-49', 'JI Italian L Belt-IMPORTED Magic', NULL, '1059.3220', '27.0000', 1, '5148.3051', 5, '18.0000%', NULL, NULL, NULL, '33750.0000', '27.0000', '2019-02-27', 'received', '1250.0000', '1250.0000', '27.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (862, NULL, NULL, 480, 'JI-M-LB-0010', 'JI Lock Belt', 411, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-27', 'received', '340.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (863, NULL, NULL, 481, 'JI-M-LB-0011', 'JI Lock Belt', 413, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-27', 'received', '340.0000', NULL, '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (864, NULL, NULL, 482, 'JI-M-LB-0012-31', 'JI Lock Belt-IMP Metro', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-27', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (865, NULL, NULL, 483, 'JI-M-LB-0013-31', 'JI Lock Belt-IMP Metro', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-27', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (866, NULL, NULL, 484, 'JI-M-LB-0014-31', 'JI Lock Belt-IMP Metro', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-27', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (867, NULL, NULL, 485, 'JI-M-LB-0015-31', 'JI Lock Belt-IMP Metro', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-27', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (868, NULL, NULL, 486, 'JI-M-LB-0016-31', 'JI Lock Belt-IMP Metro', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-27', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (869, NULL, NULL, 487, 'JI-M-LB-0017-31', 'JI Lock Belt-IMP Metro', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-27', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (870, NULL, NULL, 488, 'JI-M-LB-0018-31', 'JI Lock Belt-IMP Metro', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-02-28', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (871, NULL, NULL, 489, 'JI-M-IBLT-0124-24', 'JI Italian L Belt-Palmila', NULL, '330.5085', '27.0000', 1, '1606.2712', 5, '18.0000%', NULL, NULL, NULL, '10530.0000', '27.0000', '2019-02-28', 'received', '390.0000', '390.0000', '27.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (872, NULL, NULL, 490, 'JI-M-PU-0001', 'JI PU Belt', NULL, '122.8814', '12.0000', 1, '265.4237', 5, '18.0000%', NULL, NULL, NULL, '1740.0000', '12.0000', '2019-03-01', 'received', '145.0000', '145.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (873, NULL, NULL, 491, 'JI-M-PU-0002', 'JI PU Belt', NULL, '122.8814', '12.0000', 1, '265.4237', 5, '18.0000%', NULL, NULL, NULL, '1740.0000', '12.0000', '2019-03-01', 'received', '145.0000', '145.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (874, NULL, NULL, 492, 'JI-M-PU-0003', 'JI PU Belt', NULL, '122.8814', '6.0000', 1, '132.7119', 5, '18.0000%', NULL, NULL, NULL, '870.0000', '6.0000', '2019-03-01', 'received', '145.0000', '145.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (875, NULL, NULL, 493, 'JI-M-PU-0004', 'JI PU Belt', NULL, '122.8814', '6.0000', 1, '132.7119', 5, '18.0000%', NULL, NULL, NULL, '870.0000', '6.0000', '2019-03-01', 'received', '145.0000', '145.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (876, NULL, NULL, 332, 'JI-W-WLBLT-0017', 'JI Italian L Belt', NULL, '245.7627', '9.0000', 1, '44.2373', 5, '18%', NULL, NULL, NULL, '2610.0000', '9.0000', '2019-03-04', 'received', '290.0000', '290.0000', '9.0000', NULL, NULL, 2, 'PCS', '9.0000', '18%', '0.0000', '0.0000', '398.1357');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (877, NULL, NULL, 331, 'JI-W-WLBLT-0016', 'JI Italian L Belt', NULL, '245.7627', '11.0000', 1, '44.2373', 5, '18%', NULL, NULL, NULL, '3190.0000', '11.0000', '2019-03-04', 'received', '290.0000', '290.0000', '11.0000', NULL, NULL, 2, 'PCS', '11.0000', '18%', '0.0000', '0.0000', '486.6103');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (878, NULL, NULL, 329, 'JI-W-WILBT-0014', 'JI Italian L Belt', NULL, '245.7627', '9.0000', 1, '44.2373', 5, '18%', NULL, NULL, NULL, '2610.0000', '9.0000', '2019-03-04', 'received', '290.0000', '290.0000', '9.0000', NULL, NULL, 2, 'PCS', '9.0000', '18%', '0.0000', '0.0000', '398.1357');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (879, NULL, NULL, 330, 'JI-W-WILBT-0015', 'JI Italian L Belt', NULL, '245.7627', '6.0000', 1, '44.2373', 5, '18%', NULL, NULL, NULL, '1740.0000', '6.0000', '2019-03-04', 'received', '290.0000', '290.0000', '6.0000', NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '265.4238');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (880, NULL, NULL, 494, 'JI-M-IBLT-0125-24', 'JI Italian L Belt-Palmila', NULL, '326.2712', '6.0000', 1, '352.3729', 5, '18.0000%', NULL, NULL, NULL, '2310.0000', '6.0000', '2019-03-05', 'received', '385.0000', '385.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (881, NULL, NULL, 495, 'JI-M-IBLT-0125-26', 'JI Italian L Belt-Hony', NULL, '309.3220', '6.0000', 1, '334.0678', 5, '18.0000%', NULL, NULL, NULL, '2190.0000', '6.0000', '2019-03-05', 'received', '365.0000', '365.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (882, NULL, NULL, 496, 'JI-M-IBLT-0125-29', 'JI Italian L Belt-Metro', NULL, '309.3220', '6.0000', 1, '334.0678', 5, '18.0000%', NULL, NULL, NULL, '2190.0000', '6.0000', '2019-03-05', 'received', '365.0000', '365.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (883, NULL, NULL, 497, 'G7-M-LWLT-0054-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '4.0000', 1, '604.0678', 5, '18.0000%', NULL, NULL, NULL, '3960.0000', '4.0000', '2019-03-05', 'received', '990.0000', '990.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (884, NULL, NULL, 498, 'G7-M-LWLT-0055-61', 'G7 Leather Wallet-GIL', NULL, '838.9831', '4.0000', 1, '604.0678', 5, '18.0000%', NULL, NULL, NULL, '3960.0000', '4.0000', '2019-03-05', 'received', '990.0000', '990.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (885, NULL, NULL, 500, 'JI-M-IBLT-0036-29', 'JI Italian L Belt- Metro', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-03-06', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (886, NULL, NULL, 501, 'JI-M-IBLT-0038-17', 'JI Italian L Belt-Hony Met', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-03-06', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (887, NULL, NULL, 502, 'JI-M-IBLT-0038-42', 'JI Italian L Belt-Tango', NULL, '288.1356', '6.0000', 1, '311.1864', 5, '18.0000%', NULL, NULL, NULL, '2040.0000', '6.0000', '2019-03-06', 'received', '340.0000', '340.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (888, NULL, NULL, 503, 'JI-M-LBLT-0001', 'JI Leather Belt', NULL, '237.2881', '6.0000', 1, '256.2712', 5, '18.0000%', NULL, NULL, NULL, '1680.0000', '6.0000', '2019-03-06', 'received', '280.0000', '280.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (889, NULL, NULL, 504, 'G7-M-LWLT-0056', 'G7 Zebru Wallet-Combo', NULL, '381.3559', '12.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '12.0000', '2019-03-07', 'received', '450.0000', '450.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (890, NULL, NULL, 505, 'G7-M-LWLT-0057', 'G7 Zebru Wallet', NULL, '190.6780', '12.0000', 1, '411.8644', 5, '18.0000%', NULL, NULL, NULL, '2700.0000', '12.0000', '2019-03-07', 'received', '225.0000', '225.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (891, NULL, NULL, 506, 'JI-M-IBLT-0113-', 'JI Italian L Belt', NULL, '340.0000', '6.0000', 1, '367.2000', 5, '18.0000%', NULL, NULL, NULL, '2407.2000', '6.0000', '2019-03-07', 'received', '401.2000', '401.2000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (892, NULL, NULL, 507, 'G7-W-LB-0033-1', 'G7 Ladies Bag', NULL, '1338.9831', '1.0000', 1, '241.0169', 5, '18.0000%', NULL, NULL, NULL, '1580.0000', '1.0000', '2019-03-08', 'received', '1580.0000', '1580.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (893, NULL, NULL, 508, 'JI-M-ILB-0012-36', 'JI Indian L Belt-Bali', NULL, '17.7966', '6.0000', 1, '19.2203', 5, '18.0000%', NULL, NULL, NULL, '126.0000', '6.0000', '2019-03-08', 'received', '21.0000', '21.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (894, NULL, NULL, 509, 'JI-M-ILB-0013-36', 'Ji Leather Belt-Bali', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-03-08', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (895, NULL, NULL, 510, 'JI-M-ILB-0014-36', 'JI Leather Belt-Bali', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-03-08', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (896, NULL, NULL, 511, 'JI-M-ILB-0015-36', 'JI Leather Belt-Bali', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-03-08', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (897, NULL, NULL, 512, 'JI-M-ILB-0016-36', 'JI Leathe Belt-Bali', NULL, '215.0000', '6.0000', 1, '0.0000', 1, '0.0000', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-03-08', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (898, NULL, NULL, 513, 'JI-M-ILB-0016-27', 'JI Leather Belt-points', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-03-08', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (899, NULL, NULL, 514, 'JI-M-ILB-0016-26', 'JI Leather Belt-Honey', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-03-08', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (900, NULL, NULL, 515, 'JI-M-ILB-0017-41', 'JI Leather Belt-Lce', NULL, '182.2034', '12.0000', 1, '393.5593', 5, '18.0000%', NULL, NULL, NULL, '2580.0000', '12.0000', '2019-03-08', 'received', '215.0000', '215.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (901, NULL, NULL, 516, 'JI-M-ILB-0018-41', 'JI Leather Belt-Lce', NULL, '182.2034', '12.0000', 1, '393.5593', 5, '18.0000%', NULL, NULL, NULL, '2580.0000', '12.0000', '2019-03-08', 'received', '215.0000', '215.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (902, NULL, NULL, 517, 'JI-M-ILB-0019-41', 'JI Leather Belt-Bali', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-03-08', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (903, NULL, NULL, 518, 'JI-M-ILB-0020-41', 'JI Leather Belt-Lce', NULL, '182.2034', '12.0000', 1, '393.5593', 5, '18.0000%', NULL, NULL, NULL, '2580.0000', '12.0000', '2019-03-08', 'received', '215.0000', '215.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (904, NULL, NULL, 519, 'JI-M-CLG-0001', 'JI College Bag', NULL, '1144.0678', '6.0000', 1, '1235.5932', 5, '18.0000%', NULL, NULL, NULL, '8100.0000', '6.0000', '2019-03-11', 'received', '1350.0000', '1350.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (905, NULL, NULL, 520, 'G7-W-WLB-0014', 'G7 Ladies Bag', NULL, '1686.4407', '4.0000', 1, '1214.2373', 5, '18.0000%', NULL, NULL, NULL, '7960.0000', '4.0000', '2019-03-11', 'received', '1990.0000', '1990.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (906, NULL, NULL, 521, 'G7-W-WLB-0015', 'G7 Ladies Bag', NULL, '1516.9492', '4.0000', 1, '1092.2034', 5, '18.0000%', NULL, NULL, NULL, '7160.0000', '4.0000', '2019-03-11', 'received', '1790.0000', '1790.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (907, NULL, NULL, 522, 'G7-W-WLB-0016', 'G7 Ladies Bag', NULL, '1601.6949', '2.0000', 1, '576.6102', 5, '18.0000%', NULL, NULL, NULL, '3780.0000', '2.0000', '2019-03-11', 'received', '1890.0000', '1890.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (908, NULL, NULL, 523, 'G7-W-WLB-0017', 'G7 Ladies Bag', NULL, '1144.0678', '6.0000', 1, '1235.5932', 5, '18.0000%', NULL, NULL, NULL, '8100.0000', '6.0000', '2019-03-11', 'received', '1350.0000', '1350.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (909, NULL, NULL, 524, 'G7-W-WLB-0018', 'G7 Ladies Bag', NULL, '1822.0339', '5.0000', 1, '1639.8305', 5, '18.0000%', NULL, NULL, NULL, '10750.0000', '5.0000', '2019-03-11', 'received', '2150.0000', '2150.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (910, NULL, NULL, 525, 'G7-W-WLB-0019', 'G7 Ladies Bag', NULL, '838.9831', '8.0000', 1, '1208.1356', 5, '18.0000%', NULL, NULL, NULL, '7920.0000', '8.0000', '2019-03-11', 'received', '990.0000', '990.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (911, NULL, NULL, 526, 'G7-M-SB-000004', 'G7 Side Bag', NULL, '584.7458', '12.0000', 1, '1263.0508', 5, '18.0000%', NULL, NULL, NULL, '8280.0000', '12.0000', '2019-03-11', 'received', '690.0000', '690.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (912, NULL, NULL, 527, 'G7-M-SB-000005', 'G7 Side Bag', NULL, '330.5085', '12.0000', 1, '713.8983', 5, '18.0000%', NULL, NULL, NULL, '4680.0000', '12.0000', '2019-03-11', 'received', '390.0000', '390.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (913, NULL, NULL, 528, 'G7-M-BK-0002', 'G7 Back Pack', NULL, '1169.4915', '2.0000', 1, '421.0169', 5, '18.0000%', NULL, NULL, NULL, '2760.0000', '2.0000', '2019-03-11', 'received', '1380.0000', '1380.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (914, NULL, NULL, 529, 'G7-M-BK-0003', 'G7 Back Pack', NULL, '1347.4576', '2.0000', 1, '485.0847', 5, '18.0000%', NULL, NULL, NULL, '3180.0000', '2.0000', '2019-03-11', 'received', '1590.0000', '1590.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (915, NULL, NULL, 530, 'G7-M-BK-0004', 'G7 Back Pack', NULL, '1177.9661', '3.0000', 1, '636.1017', 5, '18.0000%', NULL, NULL, NULL, '4170.0000', '3.0000', '2019-03-11', 'received', '1390.0000', '1390.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (916, NULL, NULL, 531, 'G7-M-BK-0005', 'G7 Back Pack', NULL, '1177.9661', '6.0000', 1, '1272.2034', 5, '18.0000%', NULL, NULL, NULL, '8340.0000', '6.0000', '2019-03-11', 'received', '1390.0000', '1390.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (917, NULL, NULL, 532, 'G7-M-BK-0006', 'G7 Back Pack', NULL, '1093.2203', '4.0000', 1, '787.1186', 5, '18.0000%', NULL, NULL, NULL, '5160.0000', '4.0000', '2019-03-11', 'received', '1290.0000', '1290.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (918, NULL, NULL, 533, 'G7-M-TB-0003', 'G7 Travelling Bag', NULL, '2110.1695', '2.0000', 1, '759.6610', 5, '18.0000%', NULL, NULL, NULL, '4980.0000', '2.0000', '2019-03-11', 'received', '2490.0000', '2490.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (919, NULL, NULL, 534, 'G7-M-TB-0004', 'G7 Travelling Bag', NULL, '1855.9322', '2.0000', 1, '668.1356', 5, '18.0000%', NULL, NULL, NULL, '4380.0000', '2.0000', '2019-03-11', 'received', '2190.0000', '2190.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (920, NULL, NULL, 535, 'G7-M-TB-0005', 'G7 Travelling Bag', NULL, '1601.6949', '2.0000', 1, '576.6102', 5, '18.0000%', NULL, NULL, NULL, '3780.0000', '2.0000', '2019-03-11', 'received', '1890.0000', '1890.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (921, NULL, NULL, 536, 'G7-M-TB-0006', 'G7 Travelling Bag', NULL, '1601.6949', '2.0000', 1, '576.6102', 5, '18.0000%', NULL, NULL, NULL, '3780.0000', '2.0000', '2019-03-11', 'received', '1890.0000', '1890.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (922, NULL, NULL, 537, 'G7-M-BLTP-0001', 'G7 Belt Pauch', NULL, '415.2542', '6.0000', 1, '448.4746', 5, '18.0000%', NULL, NULL, NULL, '2940.0000', '6.0000', '2019-03-11', 'received', '490.0000', '490.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (923, NULL, NULL, 538, 'G7-M-BLTP-0002', 'G7 Belt Pauch', NULL, '330.5085', '13.0000', 1, '773.3898', 5, '18.0000%', NULL, NULL, NULL, '5070.0000', '13.0000', '2019-03-11', 'received', '390.0000', '390.0000', '13.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (924, NULL, NULL, 539, 'G7-M-BLTP-0003', 'G7 Belt Pauch', NULL, '372.8814', '4.0000', 1, '268.4746', 5, '18.0000%', NULL, NULL, NULL, '1760.0000', '4.0000', '2019-03-11', 'received', '440.0000', '440.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (925, NULL, NULL, 540, 'G7-M-BK-0007', 'G7 Back Pack', NULL, '1177.9661', '1.0000', 1, '212.0339', 5, '18.0000%', NULL, NULL, NULL, '1390.0000', '1.0000', '2019-03-11', 'received', '1390.0000', '1390.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (926, NULL, NULL, 541, 'G7-M-BLTP-0004', 'G7 Belt Pauch', NULL, '838.9831', '2.0000', 1, '302.0339', 5, '18.0000%', NULL, NULL, NULL, '1980.0000', '2.0000', '2019-03-11', 'received', '990.0000', '990.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (927, NULL, NULL, 542, 'G7-M-BK-0008', 'G7 Back Pack', NULL, '1262.7119', '18.0000', 1, '4091.1864', 5, '18.0000%', NULL, NULL, NULL, '26820.0000', '18.0000', '2019-03-11', 'received', '1490.0000', '1490.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (928, NULL, NULL, 543, 'G7-M-BK-0009', 'G7 Back Pack', NULL, '1008.4746', '5.0000', 1, '907.6271', 5, '18.0000%', NULL, NULL, NULL, '5950.0000', '5.0000', '2019-03-11', 'received', '1190.0000', '1190.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (929, NULL, NULL, 544, 'G7-W-WLB-0020', 'G7 Ladies Bag', NULL, '1432.2034', '5.0000', 1, '1288.9831', 5, '18.0000%', NULL, NULL, NULL, '8450.0000', '5.0000', '2019-03-11', 'received', '1690.0000', '1690.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (930, NULL, NULL, 545, 'G7-M-SB-000006', 'G7 Side Bag', NULL, '838.9831', '8.0000', 1, '1208.1356', 5, '18.0000%', NULL, NULL, NULL, '7920.0000', '8.0000', '2019-03-11', 'received', '990.0000', '990.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (931, NULL, NULL, 546, 'G7-M-SB-000007', 'G7 Side Bag', NULL, '1262.7119', '1.0000', 1, '227.2881', 5, '18.0000%', NULL, NULL, NULL, '1490.0000', '1.0000', '2019-03-11', 'received', '1490.0000', '1490.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (932, NULL, NULL, 547, 'G7-M-SB-000008', 'G7 Side Bag', NULL, '1177.9661', '1.0000', 1, '212.0339', 5, '18.0000%', NULL, NULL, NULL, '1390.0000', '1.0000', '2019-03-11', 'received', '1390.0000', '1390.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (933, NULL, NULL, 548, 'G7-M-BLTP-0005', 'G7 Belt Pauch', NULL, '500.0000', '2.0000', 1, '180.0000', 5, '18.0000%', NULL, NULL, NULL, '1180.0000', '2.0000', '2019-03-11', 'received', '590.0000', '590.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (934, NULL, NULL, 549, 'G7-M-BK-0010', 'G7 Back Pack', NULL, '1093.2203', '5.0000', 1, '983.8983', 5, '18.0000%', NULL, NULL, NULL, '6450.0000', '5.0000', '2019-03-11', 'received', '1290.0000', '1290.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (935, NULL, NULL, 550, 'G7-M-BK-0011', 'G7 Back Pack', NULL, '1008.4746', '16.0000', 1, '2904.4068', 5, '18.0000%', NULL, NULL, NULL, '19040.0000', '16.0000', '2019-03-11', 'received', '1190.0000', '1190.0000', '16.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (936, NULL, NULL, 551, 'G7-W-WLB-0021', 'G7 Ladies Bag', NULL, '330.5085', '2.0000', 1, '118.9831', 5, '18.0000%', NULL, NULL, NULL, '780.0000', '2.0000', '2019-03-11', 'received', '390.0000', '390.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (937, NULL, NULL, 552, 'G7-W-WLB-0022', 'G7 Ladies Bag', NULL, '1652.5424', '3.0000', 1, '892.3729', 5, '18.0000%', NULL, NULL, NULL, '5850.0000', '3.0000', '2019-03-11', 'received', '1950.0000', '1950.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (938, NULL, NULL, 553, 'G7-W-WLB-0023', 'G7 Ladies Bag', NULL, '1398.3051', '3.0000', 1, '755.0847', 5, '18.0000%', NULL, NULL, NULL, '4950.0000', '3.0000', '2019-03-11', 'received', '1650.0000', '1650.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (939, NULL, NULL, 554, 'G7-W-WLB-0024', 'G7 Ladies Bag', NULL, '1228.8136', '4.0000', 1, '884.7458', 5, '18.0000%', NULL, NULL, NULL, '5800.0000', '4.0000', '2019-03-11', 'received', '1450.0000', '1450.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (940, NULL, NULL, 555, 'G7-W-WLB-0025', 'G7 Ladies Bag', NULL, '1855.9322', '2.0000', 1, '668.1356', 5, '18.0000%', NULL, NULL, NULL, '4380.0000', '4.0000', '2019-03-11', 'received', '2190.0000', '2190.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (941, NULL, NULL, 556, 'G7-M-BK-0012', 'G7 Back Pack', NULL, '1262.7119', '4.0000', 1, '909.1525', 5, '18.0000%', NULL, NULL, NULL, '5960.0000', '4.0000', '2019-03-11', 'received', '1490.0000', '1490.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (942, NULL, NULL, 557, 'G7-W-WLB-0026', 'G7 Ladies Bag', NULL, '1347.4576', '5.0000', 1, '1212.7119', 5, '18.0000%', NULL, NULL, NULL, '7950.0000', '5.0000', '2019-03-11', 'received', '1590.0000', '1590.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (943, NULL, NULL, 558, 'G7-W-WLB-0027', 'G7 Ladies Bag', NULL, '1093.2203', '2.0000', 1, '393.5593', 5, '18.0000%', NULL, NULL, NULL, '2580.0000', '2.0000', '2019-03-11', 'received', '1290.0000', '1290.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (944, NULL, NULL, 559, 'G7-W-WLB-0028', 'G7 Ladies Bag', NULL, '1008.4746', '4.0000', 1, '726.1017', 5, '18.0000%', NULL, NULL, NULL, '4760.0000', '4.0000', '2019-03-11', 'received', '1190.0000', '1190.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (945, NULL, NULL, 560, 'G7-W-WLB-0029', 'G7 Ladies Bag', NULL, '1177.9661', '4.0000', 1, '848.1356', 5, '18.0000%', NULL, NULL, NULL, '5560.0000', '4.0000', '2019-03-11', 'received', '1390.0000', '1390.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (946, NULL, NULL, 561, 'G7-W-WLB-0030', 'G7 Ladies Bag', NULL, '2245.7627', '2.0000', 1, '808.4746', 5, '18.0000%', NULL, NULL, NULL, '5300.0000', '2.0000', '2019-03-11', 'received', '2650.0000', '2650.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (947, NULL, NULL, 562, 'G7-W-WLB-0031', 'G7 Ladies Bag', NULL, '1771.1864', '2.0000', 1, '637.6271', 5, '18.0000%', NULL, NULL, NULL, '4180.0000', '2.0000', '2019-03-11', 'received', '2090.0000', '2090.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (948, NULL, NULL, 563, 'G7-W-WLB-0032', 'G7 Ladies Bag', NULL, '1228.8136', '2.0000', 1, '442.3729', 5, '18.0000%', NULL, NULL, NULL, '2900.0000', '2.0000', '2019-03-11', 'received', '1450.0000', '1450.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (949, NULL, NULL, 564, 'G7-M-SB-000009', 'G7 Side Bag', NULL, '838.9831', '6.0000', 1, '906.1017', 5, '18.0000%', NULL, NULL, NULL, '5940.0000', '6.0000', '2019-03-11', 'received', '990.0000', '990.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (950, NULL, NULL, 565, 'G7-W-WC-0006', 'G7 Calch', NULL, '1177.9661', '4.0000', 1, '848.1356', 5, '18.0000%', NULL, NULL, NULL, '5560.0000', '4.0000', '2019-03-11', 'received', '1390.0000', '1390.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (951, NULL, NULL, 566, 'G7-W-WC-0007', 'G7 Calch', NULL, '1483.0508', '4.0000', 1, '1067.7966', 5, '18.0000%', NULL, NULL, NULL, '7000.0000', '4.0000', '2019-03-11', 'received', '1750.0000', '1750.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (952, NULL, NULL, 567, 'G7-W-WC-0008', 'G7 Calch', NULL, '1144.0678', '4.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '4.0000', '2019-03-11', 'received', '1350.0000', '1350.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (953, NULL, NULL, 568, 'G7-W-WC-0009', 'G7 Calch', NULL, '1144.0678', '2.0000', 1, '411.8644', 5, '18.0000%', NULL, NULL, NULL, '2700.0000', '2.0000', '2019-03-11', 'received', '1350.0000', '1350.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (954, NULL, NULL, 569, 'G7-W-WC-0010', 'G7 Calch', NULL, '1059.3220', '2.0000', 1, '381.3559', 5, '18.0000%', NULL, NULL, NULL, '2500.0000', '2.0000', '2019-03-11', 'received', '1250.0000', '1250.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (955, NULL, NULL, 570, 'G7-M-BK-0013', 'G7 Back Pack', NULL, '500.0000', '22.0000', 1, '1980.0000', 5, '18.0000%', NULL, NULL, NULL, '12980.0000', '22.0000', '2019-03-11', 'received', '590.0000', '590.0000', '22.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (956, NULL, NULL, 571, 'G7-M-BK-0014', 'G7 Back Pack', NULL, '415.2542', '6.0000', 1, '448.4746', 5, '18.0000%', NULL, NULL, NULL, '2940.0000', '6.0000', '2019-03-11', 'received', '490.0000', '490.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (957, NULL, NULL, 572, 'G7-W-WLB-0033', 'G7 Ladies Bag', NULL, '838.9831', '19.0000', 1, '2869.3220', 5, '18.0000%', NULL, NULL, NULL, '18810.0000', '19.0000', '2019-03-11', 'received', '990.0000', '990.0000', '19.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (958, NULL, NULL, 573, 'G7-W-WLB-0034', 'G7 Ladies Bag', NULL, '805.0847', '3.0000', 1, '434.7458', 5, '18.0000%', NULL, NULL, NULL, '2850.0000', '3.0000', '2019-03-11', 'received', '950.0000', '950.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (959, NULL, NULL, 574, 'G7-W-WLB-0035', 'G7 Ladies Bag', NULL, '1093.2203', '6.0000', 1, '1180.6780', 5, '18.0000%', NULL, NULL, NULL, '7740.0000', '6.0000', '2019-03-11', 'received', '1290.0000', '1290.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (960, NULL, NULL, 575, 'G7-W-WLB-0036', 'G7 Ladies Bag', NULL, '330.5085', '25.0000', 1, '1487.2881', 5, '18.0000%', NULL, NULL, NULL, '9750.0000', '25.0000', '2019-03-11', 'received', '390.0000', '390.0000', '25.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (961, NULL, NULL, 576, 'G7-W-WLB-0037', 'G7 Ladies Bag', NULL, '381.3559', '22.0000', 1, '1510.1695', 5, '18.0000%', NULL, NULL, NULL, '9900.0000', '22.0000', '2019-03-11', 'received', '450.0000', '450.0000', '22.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (962, NULL, NULL, 577, 'G7-W-WLB-0038', 'G7 Ladies Bag', NULL, '669.4915', '23.0000', 1, '2771.6949', 5, '18.0000%', NULL, NULL, NULL, '18170.0000', '23.0000', '2019-03-11', 'received', '790.0000', '790.0000', '23.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (963, NULL, NULL, 578, 'G7-W-WLB-0039', 'G7 Ladies Bag', NULL, '923.7288', '11.0000', 1, '1828.9831', 5, '18.0000%', NULL, NULL, NULL, '11990.0000', '9.0000', '2019-03-11', 'received', '1090.0000', '1090.0000', '11.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (964, NULL, NULL, 579, 'G7-W-WLB-0040', 'G7 Ladies Bag', NULL, '1008.4746', '4.0000', 1, '726.1017', 5, '18.0000%', NULL, NULL, NULL, '4760.0000', '4.0000', '2019-03-11', 'received', '1190.0000', '1190.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (965, NULL, NULL, 580, 'G7-W-WLB-0041', 'G7 Ladies Bag', NULL, '754.2373', '4.0000', 1, '543.0508', 5, '18.0000%', NULL, NULL, NULL, '3560.0000', '4.0000', '2019-03-11', 'received', '890.0000', '890.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (966, NULL, NULL, 581, 'G7-M-BK-0015', 'G7 Back Pack', NULL, '923.7288', '6.0000', 1, '997.6271', 5, '18.0000%', NULL, NULL, NULL, '6540.0000', '6.0000', '2019-03-12', 'received', '1090.0000', '1090.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (967, NULL, NULL, 582, 'G7-M-BK-0016', 'G7 Back Pack', NULL, '838.9831', '2.0000', 1, '302.0339', 5, '18.0000%', NULL, NULL, NULL, '1980.0000', '2.0000', '2019-03-12', 'received', '990.0000', '990.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (968, NULL, NULL, 583, 'G7-M-BK-0017', 'G7 Back Pack', NULL, '754.2373', '2.0000', 1, '271.5254', 5, '18.0000%', NULL, NULL, NULL, '1780.0000', '2.0000', '2019-03-12', 'received', '890.0000', '890.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (969, NULL, NULL, 584, 'G7-M-BK-0018', 'G7 Back Pack', NULL, '669.4915', '6.0000', 1, '723.0508', 5, '18.0000%', NULL, NULL, NULL, '4740.0000', '6.0000', '2019-03-12', 'received', '790.0000', '790.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (970, NULL, NULL, 585, 'G7-W-WLB-0042', 'G7 Ladies Bag', NULL, '415.2542', '6.0000', 1, '448.4746', 5, '18.0000%', NULL, NULL, NULL, '2940.0000', '6.0000', '2019-03-12', 'received', '490.0000', '490.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (971, NULL, NULL, 586, 'G7-M-LWLT-0058', 'G7 Gil Wallet-Combo', NULL, '847.4576', '4.0000', 1, '610.1695', 5, '18.0000%', NULL, NULL, NULL, '4000.0000', '5.0000', '2019-03-12', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (972, NULL, NULL, 587, 'JI-M-LB-0019', 'JI Lock Belt', 414, '211.8644', '30.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '30.0000', '2019-03-12', 'received', '250.0000', NULL, '30.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (973, NULL, NULL, 588, 'JI-M-LB-0020', 'JI Lock Belt', NULL, '254.2373', '3.0000', 1, '137.2881', 5, '18.0000%', NULL, NULL, NULL, '900.0000', '3.0000', '2019-03-12', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (974, NULL, NULL, 589, 'G7-W-LB-0045-1', 'G7 Ladies Bag', NULL, '415.2542', '2.0000', 1, '149.4915', 5, '18.0000%', NULL, NULL, NULL, '980.0000', '2.0000', '2019-03-18', 'received', '490.0000', '490.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (975, NULL, NULL, 590, 'G7-W-LB-0041-1', 'G7 Ladies Bag', NULL, '1652.5424', '1.0000', 1, '297.4576', 5, '18.0000%', NULL, NULL, NULL, '1950.0000', '1.0000', '2019-03-18', 'received', '1950.0000', '1950.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (976, NULL, NULL, 592, 'G7-W-LB-0050', 'G7 Ladies Bag', NULL, '2542.3729', '1.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '1.0000', '2019-03-18', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (977, NULL, NULL, 593, 'G7-W-LB-0042-1', 'G7 Ladies Bag', NULL, '1483.0508', '1.0000', 1, '266.9492', 5, '18.0000%', NULL, NULL, NULL, '1750.0000', '1.0000', '2019-03-22', 'received', '1750.0000', '1750.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (978, NULL, NULL, 594, 'G7-W-LB-0044-1', 'G7 Ladies Bag', NULL, '1906.7797', '1.0000', 1, '343.2203', 5, '18.0000%', NULL, NULL, NULL, '2250.0000', '1.0000', '2019-03-22', 'received', '2250.0000', '2250.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (979, NULL, NULL, 595, 'G7-W-BK-0001', 'WATERPROOF BACKPACK', NULL, '500.0000', '5.0000', 1, '0.0000', 1, '0.0000', NULL, NULL, NULL, '2500.0000', '0.0000', '2019-04-02', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (980, NULL, NULL, 596, 'G7-W-BK-0002', 'WATERPROOF BACKPACK', NULL, '450.0000', '10.0000', 1, '810.0000', 5, '18.0000%', NULL, NULL, NULL, '5310.0000', '0.0000', '2019-04-02', 'received', '531.0000', '531.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (981, NULL, NULL, 597, 'G7-W-BK-0003', 'WATERPROOF BACKPACK', NULL, '590.0000', '15.0000', 1, '1593.0000', 5, '18.0000%', NULL, NULL, NULL, '10443.0000', '0.0000', '2019-04-02', 'received', '696.2000', '696.2000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (982, NULL, NULL, 598, 'G7-W-BK-0004', 'WATERPROOF BACKPACK', NULL, '450.0000', '10.0000', 1, '810.0000', 5, '18.0000%', NULL, NULL, NULL, '5310.0000', '1.0000', '2019-04-02', 'received', '531.0000', '531.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (983, NULL, NULL, 599, 'G7-W-BK-0006', 'WATERPROOF BACKPACK', NULL, '700.0000', '5.0000', 1, '630.0000', 5, '18.0000%', NULL, NULL, NULL, '4130.0000', '2.0000', '2019-04-02', 'received', '826.0000', '826.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (984, NULL, NULL, 600, 'G7-W-BK-0007', 'WATERPROOF BACKPACK', NULL, '450.0000', '5.0000', 1, '405.0000', 5, '18.0000%', NULL, NULL, NULL, '2655.0000', '0.0000', '2019-04-02', 'received', '531.0000', '531.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (985, NULL, NULL, 601, 'G7-W-BK-0008', 'WATERPROOF BACKPACK', NULL, '750.0000', '15.0000', 1, '2025.0000', 5, '18.0000%', NULL, NULL, NULL, '13275.0000', '0.0000', '2019-04-02', 'received', '885.0000', '885.0000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (986, NULL, NULL, 602, 'G7-M-LB-0001', 'LEATHER BRIEFCASE', NULL, '500.0000', '5.0000', 1, '450.0000', 5, '18.0000%', NULL, NULL, NULL, '2950.0000', '0.0000', '2019-04-02', 'received', '590.0000', '590.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (987, NULL, NULL, 603, 'G7-M-LB-0002', 'LEATHER BRIEFCASE', NULL, '500.0000', '10.0000', 1, '900.0000', 5, '18.0000%', NULL, NULL, NULL, '5900.0000', '0.0000', '2019-04-02', 'received', '590.0000', '590.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (988, NULL, NULL, 604, 'G7-M-LPH-0001', 'LEATHER LAPTOP HANDBAG', NULL, '500.0000', '15.0000', 1, '1350.0000', 5, '18.0000%', NULL, NULL, NULL, '8850.0000', '0.0000', '2019-04-02', 'received', '590.0000', '590.0000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (989, NULL, NULL, 605, 'G7-W-LBK-0001', 'LEATHER BACKPACK', NULL, '400.0000', '10.0000', 1, '720.0000', 5, '18.0000%', NULL, NULL, NULL, '4720.0000', '1.0000', '2019-04-02', 'received', '472.0000', '472.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (990, NULL, NULL, 606, 'G7-W-LBK-0002', 'LEATHER BACKPACK', NULL, '500.0000', '2.0000', 1, '180.0000', 5, '18.0000%', NULL, NULL, NULL, '1180.0000', '0.0000', '2019-04-02', 'received', '590.0000', '590.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (991, NULL, NULL, 607, 'G7-W-LSB-0001', 'LEATHER SHOULDER BAG', NULL, '400.0000', '5.0000', 1, '360.0000', 5, '18.0000%', NULL, NULL, NULL, '2360.0000', '0.0000', '2019-04-02', 'received', '472.0000', '472.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (992, NULL, NULL, 608, 'G7-W-LSB-0002', 'LEATHER SHOULDER BAG', NULL, '500.0000', '5.0000', 1, '450.0000', 5, '18.0000%', NULL, NULL, NULL, '2950.0000', '0.0000', '2019-04-02', 'received', '590.0000', '590.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (993, NULL, NULL, 609, 'G7-W-LSB-0003', 'LEATHER SHOULDER BAG', NULL, '400.0000', '10.0000', 1, '720.0000', 5, '18.0000%', NULL, NULL, NULL, '4720.0000', '0.0000', '2019-04-02', 'received', '472.0000', '472.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (994, NULL, NULL, 610, 'G7-W-LSB-0004', 'LEATHER SHOULDER BAG', NULL, '400.0000', '5.0000', 1, '360.0000', 5, '18.0000%', NULL, NULL, NULL, '2360.0000', '0.0000', '2019-04-02', 'received', '472.0000', '472.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (995, NULL, NULL, 611, 'G7-W-LSB-0005', 'LEATHER SHOULDER BAG', NULL, '400.0000', '5.0000', 1, '360.0000', 5, '18.0000%', NULL, NULL, NULL, '2360.0000', '5.0000', '2019-04-02', 'received', '472.0000', '472.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (996, NULL, NULL, 612, 'G7-W-PLSB-0001', 'PU LADIES SHOULDER BAG', NULL, '500.0000', '20.0000', 1, '1800.0000', 5, '18.0000%', NULL, NULL, NULL, '11800.0000', '0.0000', '2019-04-02', 'received', '590.0000', '590.0000', '20.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (997, NULL, NULL, 613, 'G7-W-PLSB-0002', 'PU LADIES SHOULDER BAG', NULL, '500.0000', '30.0000', 1, '2700.0000', 5, '18.0000%', NULL, NULL, NULL, '17700.0000', '0.0000', '2019-04-02', 'received', '590.0000', '590.0000', '30.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (998, NULL, NULL, 614, 'BU-2', 'Buckle-2', NULL, '11.7500', '2268.0000', 1, '4796.8200', 5, '18.0000%', NULL, NULL, NULL, '31445.8200', '0.0000', '2019-04-03', 'received', '13.8650', '13.8650', '2268.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (999, NULL, NULL, 615, 'G7-LAPTOP-BAG', 'LAPTOP BAG', NULL, '148.0000', '30.0000', 1, '799.2000', 5, '18.0000%', NULL, NULL, NULL, '5239.2000', '0.0000', '2019-04-03', 'received', '174.6400', '174.6400', '30.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1000, NULL, NULL, 616, 'G7-WALLWT-1', 'WALLET', NULL, '15.3300', '5340.0000', 1, '14735.1960', 5, '18.0000%', NULL, NULL, NULL, '96597.3960', '0.0000', '2019-04-03', 'received', '18.0894', '18.0894', '5340.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1001, NULL, NULL, 617, 'Ji-bkl-0001', 'Belt with buckle', NULL, '56.8300', '2400.0000', 1, '24550.5600', 5, '18.0000%', NULL, NULL, NULL, '160942.5600', '0.0000', '2019-04-03', 'received', '67.0594', '67.0594', '2400.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1002, 21, NULL, 617, 'Ji-bkl-0001', 'Belt with buckle', NULL, '56.8300', '2400.0000', 1, '24550.5600', 5, '18%', '0', '0.0000', NULL, '160942.5600', '2328.0000', '2019-03-29', 'received', '67.0600', '56.8300', '2400.0000', NULL, NULL, 2, 'PCS', '2400.0000', '18%', '0.0000', '0.0000', '24550.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1003, 21, NULL, 614, 'BU-2', 'Buckle-2', NULL, '11.7500', '2268.0000', 1, '4796.8200', 5, '18%', '0', '0.0000', NULL, '31445.8200', '0.0000', '2019-03-29', 'received', '13.8700', '11.7500', '2268.0000', NULL, NULL, 2, 'PCS', '2268.0000', '18%', '0.0000', '0.0000', '4796.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1004, 21, NULL, 615, 'G7-LAPTOP-BAG', 'LAPTOP BAG', NULL, '148.0000', '30.0000', 1, '799.2000', 5, '18%', '0', '0.0000', NULL, '5239.2000', '30.0000', '2019-03-29', 'received', '174.6400', '148.0000', '30.0000', NULL, NULL, 2, 'PCS', '30.0000', '18%', '0.0000', '0.0000', '799.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1005, 21, NULL, 616, 'G7-WALLWT-1', 'WALLET', NULL, '15.3300', '5340.0000', 1, '14735.1960', 5, '18%', '0', '0.0000', NULL, '96597.4000', '5340.0000', '2019-03-29', 'received', '18.0900', '15.3300', '5340.0000', NULL, NULL, 2, 'PCS', '5340.0000', '18%', '0.0000', '0.0000', '14735.1960');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1006, NULL, NULL, 618, 'G7-Gift-Set-Box', 'Gift Set Box', NULL, '25.0000', '475.0000', 1, '2137.5000', 5, '18.0000%', NULL, NULL, NULL, '14012.5000', '0.0000', '2019-04-11', 'received', '29.5000', '29.5000', '475.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1007, 22, NULL, 618, 'G7-Gift-Set-Box', 'Gift Set Box', NULL, '25.0000', '475.0000', 1, '2137.5000', 5, '18%', '0', '0.0000', NULL, '14012.5000', '475.0000', '2019-04-11', 'received', '29.5000', '25.0000', '475.0000', NULL, NULL, 2, 'PCS', '475.0000', '18%', '0.0000', '0.0000', '2137.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1008, 23, NULL, 618, 'G7-Gift-Set-Box', 'Gift Set Box', NULL, '25.0000', '500.0000', 1, '2250.0000', 5, '18%', '0', '0.0000', NULL, '14750.0000', '500.0000', '2019-04-11', 'received', '29.5000', '25.0000', '500.0000', NULL, NULL, 2, 'PCS', '500.0000', '18%', '0.0000', '0.0000', '2250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1009, 23, NULL, 619, 'G7-WALLET-BOX', 'WALLET BOX', NULL, '12.0000', '400.0000', 1, '864.0000', 5, '18%', '0', '0.0000', NULL, '5664.0000', '400.0000', '2019-04-11', 'received', '14.1600', '12.0000', '400.0000', NULL, NULL, 2, 'PCS', '400.0000', '18%', '0.0000', '0.0000', '864.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1010, 23, NULL, 620, 'G7-BELT-BOX', 'BELT BOX', NULL, '15.0000', '400.0000', 1, '1080.0000', 5, '18%', '0', '0.0000', NULL, '7080.0000', '101.0000', '2019-04-11', 'received', '17.7000', '15.0000', '400.0000', NULL, NULL, 2, 'PCS', '400.0000', '18%', '0.0000', '0.0000', '1080.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1011, 23, NULL, 621, 'G7-PASSPORT-BOX', 'PASSPORT BOX', NULL, '18.0000', '400.0000', 1, '1296.0000', 5, '18%', '0', '0.0000', NULL, '8496.0000', '400.0000', '2019-04-11', 'received', '21.2400', '18.0000', '400.0000', NULL, NULL, 2, 'PCS', '400.0000', '18%', '0.0000', '0.0000', '1296.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1012, NULL, NULL, 622, 'Inc5-W-Chhapl-0001', 'Inc.5 Chhapl', NULL, '1686.4407', '23.0000', 1, '6981.8644', 5, '18.0000%', NULL, NULL, NULL, '45770.0000', '23.0000', '2019-04-19', 'received', '1990.0000', '1990.0000', '23.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1013, NULL, NULL, 623, 'Inc5-W-Chhapl-0002', 'Inc.5 Chhapl', NULL, '1601.6949', '10.0000', 1, '2883.0508', 5, '18.0000%', NULL, NULL, NULL, '18900.0000', '13.0000', '2019-04-19', 'received', '1890.0000', '1890.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1014, NULL, NULL, 624, 'Inc5-W-Chhapl-0003', 'Inc.5 Chhapl', NULL, '1855.9322', '8.0000', 1, '2672.5424', 5, '18.0000%', NULL, NULL, NULL, '17520.0000', '8.0000', '2019-04-19', 'received', '2190.0000', '2190.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1015, NULL, NULL, 625, 'Inc5-W-Chhapl-0004', 'Inc.5 Chhapl', NULL, '2110.1695', '4.0000', 1, '1519.3220', 5, '18.0000%', NULL, NULL, NULL, '9960.0000', '5.0000', '2019-04-19', 'received', '2490.0000', '2490.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1016, NULL, NULL, 626, 'Inc5-W-Chhapl-0005', 'Inc.5 Chhapl', NULL, '1940.6780', '5.0000', 1, '1746.6102', 5, '18.0000%', NULL, NULL, NULL, '11450.0000', '5.0000', '2019-04-19', 'received', '2290.0000', '2290.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1017, NULL, NULL, 627, 'Inc5-W-Chhapl-0006', 'Inc.5 Chhapl', NULL, '2025.4237', '9.0000', 1, '3281.1864', 5, '18.0000%', NULL, NULL, NULL, '21510.0000', '9.0000', '2019-04-19', 'received', '2390.0000', '2390.0000', '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1018, NULL, NULL, 628, 'Inc5-W-Chhapl-0007', 'Inc.5 Chhapl', NULL, '466.1017', '5.0000', 1, '419.4915', 5, '18.0000%', NULL, NULL, NULL, '2750.0000', '5.0000', '2019-04-19', 'received', '550.0000', '550.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1019, NULL, NULL, 629, 'Inc5-W-Chhapl-0008', 'Inc.5 Chhapl', NULL, '466.1017', '5.0000', 1, '419.4915', 5, '18.0000%', NULL, NULL, NULL, '2750.0000', '5.0000', '2019-04-19', 'received', '550.0000', '550.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1020, NULL, NULL, 630, 'Inc5-W-Chhapl-0009', 'Inc.5 Chhapl', NULL, '466.1017', '1.0000', 1, '83.8983', 5, '18.0000%', NULL, NULL, NULL, '550.0000', '1.0000', '2019-04-19', 'received', '550.0000', '550.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1021, NULL, NULL, 631, 'Inc5-W-Chhapl-0010', 'Inc.5 Chhapl', NULL, '466.1017', '2.0000', 1, '167.7966', 5, '18.0000%', NULL, NULL, NULL, '1100.0000', '2.0000', '2019-04-19', 'received', '550.0000', '550.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1022, NULL, NULL, 632, 'Inc5-W-Chhapl-0011', 'Inc.5 Chhapl', NULL, '466.1017', '2.0000', 1, '167.7966', 5, '18.0000%', NULL, NULL, NULL, '1100.0000', '2.0000', '2019-04-19', 'received', '550.0000', '550.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1023, NULL, NULL, 633, 'Inc5-W-Chhapl-0012', 'Inc.5 Chhapl', NULL, '466.1017', '1.0000', 1, '83.8983', 5, '18.0000%', NULL, NULL, NULL, '550.0000', '2.0000', '2019-04-19', 'received', '550.0000', '550.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1024, NULL, NULL, 634, 'Inc5-W-Chhapl-0013', 'Inc.5 Chhapl', NULL, '466.1017', '2.0000', 1, '167.7966', 5, '18.0000%', NULL, NULL, NULL, '1100.0000', '2.0000', '2019-04-19', 'received', '550.0000', '550.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1025, NULL, NULL, 635, 'Inc5-W-Chhapl-0014', 'Inc.5 Chhapl', NULL, '466.1017', '1.0000', 1, '83.8983', 5, '18.0000%', NULL, NULL, NULL, '550.0000', '1.0000', '2019-04-19', 'received', '550.0000', '550.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1026, NULL, NULL, 636, 'Inc5-W-Chhapl-0015', 'Inc.5 Chhapl', NULL, '466.1017', '1.0000', 1, '83.8983', 5, '18.0000%', NULL, NULL, NULL, '550.0000', '1.0000', '2019-04-19', 'received', '550.0000', '550.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1027, NULL, NULL, 637, 'Inc5-W-Chhapl-0016', 'Inc.5 Chhapl', NULL, '466.1017', '9.0000', 1, '755.0847', 5, '18.0000%', NULL, NULL, NULL, '4950.0000', '9.0000', '2019-04-19', 'received', '550.0000', '550.0000', '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1028, NULL, NULL, 638, 'Inc5-W-Chhapl-0017', 'Inc.5 Chhapl', NULL, '466.1017', '8.0000', 1, '671.1864', 5, '18.0000%', NULL, NULL, NULL, '4400.0000', '8.0000', '2019-04-19', 'received', '550.0000', '550.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1029, NULL, NULL, 639, 'JI-M-ISM-0008-66', 'JI Italian Steel Bkl-Nova Pull', NULL, '381.3559', '12.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '12.0000', '2019-04-25', 'received', '450.0000', '450.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1030, NULL, NULL, 640, 'JI-M-ISM-0009-26', 'JI Italian Steel Bkl-Hony', NULL, '466.1017', '18.0000', 1, '1510.1695', 5, '18.0000%', NULL, NULL, NULL, '9900.0000', '18.0000', '2019-04-25', 'received', '550.0000', '550.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1031, NULL, NULL, 641, 'JI-M-ISM-0009-24', 'JI Italian Steel Bkl-Palmila', NULL, '466.1017', '6.0000', 1, '503.3898', 5, '18.0000%', NULL, NULL, NULL, '3300.0000', '6.0000', '2019-04-25', 'received', '550.0000', '550.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1032, NULL, NULL, 642, 'JI-M-ISM-0009-39', 'JI Italian Steel Bkl-Webs', NULL, '466.1017', '6.0000', 1, '503.3898', 5, '18.0000%', NULL, NULL, NULL, '3300.0000', '3.0000', '2019-04-25', 'received', '550.0000', '550.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1033, NULL, NULL, 643, 'JI-M-ISM-0010-42', 'JI Italian Steel Bkl-Tango', NULL, '423.7288', '12.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '12.0000', '2019-04-25', 'received', '500.0000', '500.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1034, NULL, NULL, 644, 'JI-M-ISM-0010-17', 'JI Italian Steel Bkl-Hony Met', NULL, '423.7288', '6.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '6.0000', '2019-04-25', 'received', '500.0000', '500.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1035, NULL, NULL, 645, 'JI-M-ISM-0011-26', 'JI Italian Steel Bkl-Hony ', NULL, '466.1017', '12.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '12.0000', '2019-04-25', 'received', '550.0000', '550.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1036, NULL, NULL, 646, 'JI-M-ISM-0011-24', 'JI Italian Steel Bkl-Palmila', NULL, '466.1017', '12.0000', 1, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '11.0000', '2019-04-25', 'received', '550.0000', '550.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1037, NULL, NULL, 647, 'JI-M-ISM-0011-39', 'JI Italian Steel Bkl-Webs', NULL, '466.1017', '3.0000', 1, '251.6949', 5, '18.0000%', NULL, NULL, NULL, '1650.0000', '3.0000', '2019-04-25', 'received', '550.0000', '550.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1038, NULL, NULL, 648, 'JI-M-ISM-0012-23', 'JI Italian Steel Bkl-Magic', NULL, '381.3559', '6.0000', 1, '411.8644', 5, '18.0000%', NULL, NULL, NULL, '2700.0000', '6.0000', '2019-04-25', 'received', '450.0000', '450.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1039, NULL, NULL, 649, 'JI-M-ISM-0013-30', 'JI Italian Steel Bkl-IMP Palmila', NULL, '381.3559', '6.0000', 1, '411.8644', 5, '18.0000%', NULL, NULL, NULL, '2700.0000', '6.0000', '2019-04-25', 'received', '450.0000', '450.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1040, NULL, NULL, 650, 'JI-M-ISM-0014-24', 'JI Italian Steel Bkl-Palmila', NULL, '466.1017', '6.0000', 1, '503.3898', 5, '18.0000%', NULL, NULL, NULL, '3300.0000', '6.0000', '2019-04-25', 'received', '550.0000', '550.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1041, NULL, NULL, 651, 'JI-M-ISM-0014-30', 'JI Italian Steel Bkl-IMP Palmila', NULL, '466.1017', '6.0000', 1, '503.3898', 5, '18.0000%', NULL, NULL, NULL, '3300.0000', '6.0000', '2019-04-25', 'received', '550.0000', '550.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1042, NULL, NULL, 652, 'JI-M-ISM-0015-49', 'JI Italian Steel Bkl-IMP Magic', NULL, '381.3559', '6.0000', 1, '411.8644', 5, '18.0000%', NULL, NULL, NULL, '2700.0000', '6.0000', '2019-04-25', 'received', '450.0000', '450.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1043, NULL, NULL, 653, 'JI-M-ISM-0016-24', 'JI Italian Steel Bkl-Palmila', NULL, '466.1017', '6.0000', 1, '503.3898', 5, '18.0000%', NULL, NULL, NULL, '3300.0000', '6.0000', '2019-04-25', 'received', '550.0000', '550.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1044, NULL, NULL, 654, 'JI-M-ISM-0017-31', 'JI Italian Steel Bkl-Imp Metro', NULL, '466.1017', '7.0000', 1, '587.2881', 5, '18.0000%', NULL, NULL, NULL, '3850.0000', '7.0000', '2019-04-25', 'received', '550.0000', '550.0000', '7.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1045, NULL, NULL, 655, 'JI-M-ISM-0018-31', 'JI Italian Steel Bkl-Imp Metro', NULL, '466.1017', '5.0000', 1, '419.4915', 5, '18.0000%', NULL, NULL, NULL, '2750.0000', '5.0000', '2019-04-25', 'received', '550.0000', '550.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1046, NULL, NULL, 656, 'JI-M-IBLT-0120-25', 'JI Italian L Belt-Sunshine', NULL, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '6.0000', '2019-04-25', 'received', '1280.0000', '1280.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1047, NULL, NULL, 657, 'JI-M-IBLT-0120-17', 'JI Italian L Belt-Hony Met', NULL, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '6.0000', '2019-04-25', 'received', '1280.0000', '1280.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1048, NULL, NULL, 658, 'JI-M-IBLT-0120-24', 'JI Italian L Belt-Palmila', NULL, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '6.0000', '2019-04-25', 'received', '1280.0000', '1280.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1049, NULL, NULL, 659, 'JI-M-IBLT-0120-31', 'JI Italian L Belt-IMPORTED Metro', NULL, '1084.7458', '3.0000', 1, '585.7627', 5, '18.0000%', NULL, NULL, NULL, '3840.0000', '3.0000', '2019-04-25', 'received', '1280.0000', '1280.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1050, NULL, NULL, 660, 'JI-M-IBLT-0002-31', 'JI Italian L Belt-IMPORTED Metro', NULL, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '6.0000', '2019-04-25', 'received', '1150.0000', '1150.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1051, NULL, NULL, 661, 'JI-M-IBLT-0002-23', 'JI Italian L Belt-MAGIC', NULL, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '6.0000', '2019-04-25', 'received', '1150.0000', '1150.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1052, NULL, NULL, 662, 'JI-M-IBLT-0002-17', 'JI Italian L Belt-Hony Met', NULL, '974.5763', '6.0000', 1, '1052.5424', 5, '18.0000%', NULL, NULL, NULL, '6900.0000', '6.0000', '2019-04-25', 'received', '1150.0000', '1150.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1053, NULL, NULL, 663, 'JI-M-IBLT-0037-26', 'JI Italian L Belt-Hony', NULL, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '6.0000', '2019-04-25', 'received', '1280.0000', '1280.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1054, NULL, NULL, 664, 'JI-M-IBLT-0037-24', 'JI Italian L Belt-Palmila', NULL, '1084.7458', '6.0000', 1, '1171.5254', 5, '18.0000%', NULL, NULL, NULL, '7680.0000', '6.0000', '2019-04-25', 'received', '1280.0000', '1280.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1055, NULL, NULL, 665, 'JI-M-ILB-103-19', 'JI Italian L Belt-Evolution', NULL, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2019-04-25', 'received', '1250.0000', '1250.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1056, NULL, NULL, 666, 'JI-M-ILB-103-19', 'JI Italian L Belt-Evolution', NULL, '1059.3220', '18.0000', 1, '3432.2034', 5, '18.0000%', NULL, NULL, NULL, '22500.0000', '18.0000', '2019-04-25', 'received', '1250.0000', '1250.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1057, NULL, NULL, 667, 'JI-M-ILB-103-26', 'JI Italian L Belt-Hony', NULL, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2019-04-25', 'received', '1250.0000', '1250.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1058, NULL, NULL, 668, 'JI-M-IBLT-0116-24', 'JI Italian L Belt-Palmila', NULL, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2019-04-25', 'received', '1250.0000', '1250.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1059, NULL, NULL, 669, 'JI-M-IBLT-0116-23', 'JI Italian L Belt-MAGIC', NULL, '1059.3220', '3.0000', 1, '572.0339', 5, '18.0000%', NULL, NULL, NULL, '3750.0000', '3.0000', '2019-04-25', 'received', '1250.0000', '1250.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1060, NULL, NULL, 670, 'JI-M-IBLT-0005-24', 'JI Italian L Belt-Palmila', NULL, '1059.3220', '3.0000', 1, '572.0339', 5, '18.0000%', NULL, NULL, NULL, '3750.0000', '3.0000', '2019-04-25', 'received', '1250.0000', '1250.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1061, NULL, NULL, 671, 'JI-M-IBLT-0007-26', 'JI Italian L Belt-Hony', NULL, '1059.3220', '6.0000', 1, '1144.0678', 5, '18.0000%', NULL, NULL, NULL, '7500.0000', '6.0000', '2019-04-25', 'received', '1250.0000', '1250.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1062, NULL, NULL, 672, 'JI-M-IBLT-0039-25', 'JI Italian L Belt-Sunshin', NULL, '1042.3729', '3.0000', 1, '562.8814', 5, '18.0000%', NULL, NULL, NULL, '3690.0000', '3.0000', '2019-04-26', 'received', '1230.0000', '1230.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1063, NULL, NULL, 673, 'JI-M-IBLT-0124-26', 'JI Italian L Belt-Hony', NULL, '390.0000', '6.0000', 1, '421.2000', 5, '18.0000%', NULL, NULL, NULL, '2761.2000', '6.0000', '2019-04-26', 'received', '460.2000', '460.2000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1064, NULL, NULL, 674, 'JI-M-IBLT-0118-24', 'JI Italian L Belt-Palmila', NULL, '1008.4746', '6.0000', 1, '1089.1525', 5, '18.0000%', NULL, NULL, NULL, '7140.0000', '6.0000', '2019-04-26', 'received', '1190.0000', '1190.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1065, NULL, NULL, 675, 'JI-M-ILB-0013', 'JI Indian L Belt', NULL, '440.6780', '41.0000', 1, '3252.2034', 5, '18.0000%', NULL, NULL, NULL, '21320.0000', '41.0000', '2019-04-26', 'received', '520.0000', '520.0000', '41.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1066, NULL, NULL, 676, 'JI-M-ILB-0021-36', 'JI Leather Belt-Bali', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-26', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1067, NULL, NULL, 677, 'JI-M-ILB-0022', 'JI Leather Belt', NULL, '182.2034', '12.0000', 1, '393.5593', 5, '18.0000%', NULL, NULL, NULL, '2580.0000', '12.0000', '2019-04-26', 'received', '215.0000', '215.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1068, NULL, NULL, 678, 'JI-M-ILB-0023', 'JI Indian Leather Belt', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-26', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1069, NULL, NULL, 679, 'JI-M-ILB-0024', 'JI Leather Belt', NULL, '182.2034', '15.0000', 1, '491.9492', 5, '18.0000%', NULL, NULL, NULL, '3225.0000', '15.0000', '2019-04-26', 'received', '215.0000', '215.0000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1070, NULL, NULL, 680, 'JI-M-ILB-0025', 'JI Indian Leather Belt', NULL, '182.2034', '24.0000', 1, '787.1186', 5, '18.0000%', NULL, NULL, NULL, '5160.0000', '24.0000', '2019-04-26', 'received', '215.0000', '215.0000', '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1071, NULL, NULL, 681, 'JI-M-IBLT-0010-31', 'JI Italian L Belt-IMPORTED Metro', NULL, '1059.3220', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-04-26', 'received', '1250.0000', '1250.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1072, NULL, NULL, 682, 'JI-M-IBLT-0021-23', 'JI Italian L Belt-MAGIC', NULL, '889.8305', '12.0000', 1, '1922.0339', 5, '18.0000%', NULL, NULL, NULL, '12600.0000', '12.0000', '2019-04-26', 'received', '1050.0000', '1050.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1073, NULL, NULL, 683, 'JI-M-LB-0010-23', 'JI Lock Belt-Magic', NULL, '288.1356', '2.0000', 1, '103.7288', 5, '18.0000%', NULL, NULL, NULL, '680.0000', '2.0000', '2019-04-26', 'received', '340.0000', '340.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1074, NULL, NULL, 684, 'JI-M-LB-0015-23', 'JI Lock Belt-Magic', NULL, '288.1356', '4.0000', 1, '207.4576', 5, '18.0000%', NULL, NULL, NULL, '1360.0000', '4.0000', '2019-04-26', 'received', '340.0000', '340.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1075, NULL, NULL, 685, 'JI-M-LB-0016-19', 'JI Lock Belt-Evolution', NULL, '288.1356', '3.0000', 1, '155.5932', 5, '18.0000%', NULL, NULL, NULL, '1020.0000', '3.0000', '2019-04-26', 'received', '340.0000', '340.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1076, NULL, NULL, 686, 'JI-M-LB-0015-19', 'JI Lock Belt-Evolution', NULL, '288.1356', '3.0000', 1, '155.5932', 5, '18.0000%', NULL, NULL, NULL, '1020.0000', '3.0000', '2019-04-26', 'received', '340.0000', '340.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1077, NULL, NULL, 687, 'JI-M-LB-0011-29', 'JI Lock Belt-IMP Metro', NULL, '288.1356', '3.0000', 1, '155.5932', 5, '18.0000%', NULL, NULL, NULL, '1020.0000', '3.0000', '2019-04-26', 'received', '340.0000', '340.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1078, NULL, NULL, 688, 'JI-M-IBLT-0126-24', 'JI Italian L Belt-Palmila', NULL, '309.3220', '6.0000', 1, '334.0678', 5, '18.0000%', NULL, NULL, NULL, '2190.0000', '6.0000', '2019-04-26', 'received', '365.0000', '365.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1079, NULL, NULL, 689, 'JI-M-IBLT-0065-26', 'JI Italian L Belt-Hony', NULL, '720.3390', '6.0000', 1, '777.9661', 5, '18.0000%', NULL, NULL, NULL, '5100.0000', '6.0000', '2019-04-26', 'received', '850.0000', '850.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1080, NULL, NULL, 690, 'JI-M-IBLT-0063-29', 'JI Italian L Belt-Metro', NULL, '754.2373', '6.0000', 1, '814.5763', 5, '18.0000%', NULL, NULL, NULL, '5340.0000', '6.0000', '2019-04-26', 'received', '890.0000', '890.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1081, NULL, NULL, 691, 'JI-M-IBLT-0032-23', 'JI Italian L Belt-MAGIC', NULL, '915.2542', '6.0000', 1, '988.4746', 5, '18.0000%', NULL, NULL, NULL, '6480.0000', '6.0000', '2019-04-26', 'received', '1080.0000', '1080.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1082, NULL, NULL, 692, 'JI-M-IBLT-0030-23', 'JI Italian L Belt-MAGIC', NULL, '915.2542', '6.0000', 1, '988.4746', 5, '18.0000%', NULL, NULL, NULL, '6480.0000', '6.0000', '2019-04-26', 'received', '1080.0000', '1080.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1083, NULL, NULL, 693, 'JI-M-ISM-0019-26', 'JI Italian Steel Bkl-Hony', NULL, '466.1017', '3.0000', 1, '251.6949', 5, '18.0000%', NULL, NULL, NULL, '1650.0000', '3.0000', '2019-04-27', 'received', '550.0000', '550.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1084, NULL, NULL, 694, 'JI-M-ILB-0001-26', 'JI Indian L Belt-Hony', NULL, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '6.0000', '2019-04-27', 'received', '560.0000', '560.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1085, NULL, NULL, 695, 'JI-M-ILB-0021-27', 'JI Leather Belt-Point', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1086, NULL, NULL, 696, 'JI-M-ILB-0021-38', 'JI Leather Belt-Santafi', NULL, '182.2034', '10.0000', 1, '327.9661', 5, '18.0000%', NULL, NULL, NULL, '2150.0000', '10.0000', '2019-04-27', 'received', '215.0000', '215.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1087, NULL, NULL, 697, 'JI-M-ILB-0015-27', 'JI Leather Belt-Point', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1088, NULL, NULL, 698, 'JI-M-ILB-0015-37', 'JI Leather Belt-Melody', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1089, NULL, NULL, 699, 'JI-M-ILB-0015-38', 'JI Leather Belt-Santafi', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1090, NULL, NULL, 700, 'JI-M-ILB-0026-27', 'JI Indian Leather Belt-Point', NULL, '182.2034', '12.0000', 1, '393.5593', 5, '18.0000%', NULL, NULL, NULL, '2580.0000', '12.0000', '2019-04-27', 'received', '215.0000', '215.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1091, NULL, NULL, 701, 'JI-M-ILB-0026-26', 'JI Indian Leather Belt-Hony', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1092, NULL, NULL, 702, 'JI-M-ILB-0027-27', 'JI Indian Leather Belt-Point', NULL, '182.2034', '12.0000', 1, '393.5593', 5, '18.0000%', NULL, NULL, NULL, '2580.0000', '12.0000', '2019-04-27', 'received', '215.0000', '215.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1093, NULL, NULL, 703, 'JI-M-ILB-0027-36', 'JI Indian Leather Belt-Bali', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1094, NULL, NULL, 704, 'JI-M-ILB-0014-41', 'JI Leather Belt-Lce', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1095, NULL, NULL, 705, 'JI-M-ILB-0019-27', 'JI Leather Belt-Point', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1096, NULL, NULL, 706, 'JI-M-ILB-0027-37', 'JI Indian Leather Belt-Melody', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1097, NULL, NULL, 707, 'JI-M-ILB-0028-36', 'JI Indian Leather Belt-Bali', NULL, '182.2034', '4.0000', 1, '131.1864', 5, '18.0000%', NULL, NULL, NULL, '860.0000', '4.0000', '2019-04-27', 'received', '215.0000', '215.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1098, NULL, NULL, 708, 'JI-M-ILB-0029-27', 'JI Indian Leather Belt-Point', NULL, '182.2034', '6.0000', 1, '196.7797', 5, '18.0000%', NULL, NULL, NULL, '1290.0000', '6.0000', '2019-04-27', 'received', '215.0000', '215.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1099, NULL, NULL, 709, 'JI-M-ILB-0030-48', 'JI Indian Leather Belt-Imported', NULL, '182.2034', '7.0000', 1, '229.5763', 5, '18.0000%', NULL, NULL, NULL, '1505.0000', '7.0000', '2019-04-27', 'received', '215.0000', '215.0000', '7.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1100, NULL, NULL, 710, 'C-W-WLB-0001', 'C Ladies Bag ', NULL, '474.5763', '6.0000', 1, '512.5424', 5, '18.0000%', NULL, NULL, NULL, '3360.0000', '6.0000', '2019-05-01', 'received', '560.0000', '560.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1101, NULL, NULL, 711, 'JI-M-ILB-0031', 'JI Indian Leather Belt', NULL, '317.7966', '24.0000', 1, '1372.8814', 5, '18.0000%', NULL, NULL, NULL, '9000.0000', '24.0000', '2019-05-02', 'received', '375.0000', '375.0000', '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1102, NULL, NULL, 712, 'JI-M-IBLT-0127-24-19', 'JI Italian L Belt-Evolution', NULL, '275.4237', '6.0000', 1, '297.4576', 5, '18.0000%', NULL, NULL, NULL, '1950.0000', '6.0000', '2019-05-02', 'received', '325.0000', '325.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1103, NULL, NULL, 713, 'JI-M-IBLT-0130-48', 'JI Italian L Belt-Imported', NULL, '593.2203', '6.0000', 1, '640.6780', 5, '18.0000%', NULL, NULL, NULL, '4200.0000', '6.0000', '2019-05-02', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1104, NULL, NULL, 714, 'JI-M-IBLT-0131-48', 'JI Italian L Belt-IMPORTED', NULL, '381.3559', '12.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '6.0000', '2019-05-04', 'received', '450.0000', '450.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1105, NULL, NULL, 715, 'JI-M-IEL-0008', 'JI Italian Limited edition', NULL, '550.8475', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-05', 'received', '650.0000', '650.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1106, NULL, NULL, 716, 'JI-M-IEL-0009', 'JI Italian Limited edition', NULL, '466.1017', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-06', 'received', '550.0000', '550.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1107, NULL, NULL, 717, 'JI-M-IEL-0010', 'JI Italian Limited edition', NULL, '1694.9153', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-06', 'received', '2000.0000', '2000.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1108, NULL, NULL, 718, 'JI-M-IEL-0011', 'JI Italian Limited edition', NULL, '296.6102', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-06', 'received', '350.0000', '350.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1109, NULL, NULL, 719, 'JI-M-IEL-0012', 'JI Italian Limited edition', NULL, '296.6102', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-06', 'received', '350.0000', '350.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1110, NULL, NULL, 720, 'JI-M-IEL-0013', 'JI Italian Limited edition', NULL, '296.6102', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-06', 'received', '350.0000', '350.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1111, NULL, NULL, 721, 'JI-M-IEL-0014', 'JI Italian Limited edition', NULL, '847.4576', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-06', 'received', '1000.0000', '1000.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1112, NULL, NULL, 722, 'JI-M-IEL-0015', 'JI Italian Limited edition', NULL, '423.7288', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-06', 'received', '500.0000', '500.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1113, NULL, NULL, 723, 'JI-M-IEL-0016', 'JI Italian Limited edition', NULL, '466.1017', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-06-06', 'received', '550.0000', '550.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1114, NULL, NULL, 724, 'G7-W-SPRAY-0001', 'G7 BLUE LADY  SPREAY WITH DEO', NULL, '440.6780', '2.0000', 1, '158.6441', 5, '18.0000%', NULL, NULL, NULL, '1040.0000', '2.0000', '2019-06-11', 'received', '520.0000', '520.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1115, NULL, NULL, 725, 'G7-W-SPRAY-0002', 'G7 JAGUAR CLASSIC SPREAY ', NULL, '805.0847', '1.0000', 1, '144.9153', 5, '18.0000%', NULL, NULL, NULL, '950.0000', '1.0000', '2019-06-11', 'received', '950.0000', '950.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1116, NULL, NULL, 726, 'G7-W-SPRAY-0003', 'G7 JAGUAR GREEN  SPREAY ', NULL, '805.0847', '2.0000', 1, '289.8305', 5, '18.0000%', NULL, NULL, NULL, '1900.0000', '2.0000', '2019-06-11', 'received', '950.0000', '950.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1117, NULL, NULL, 727, 'G7-W-SPRAY-0004', 'G7 PURE OUDI SPREAY ', NULL, '635.5932', '1.0000', 1, '114.4068', 5, '18.0000%', NULL, NULL, NULL, '750.0000', '1.0000', '2019-06-11', 'received', '750.0000', '750.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1118, NULL, NULL, 728, 'G7-W-SPRAY-0005', 'G7 OUD MOOD  SPREAY ', NULL, '677.9661', '1.0000', 1, '122.0339', 5, '18.0000%', NULL, NULL, NULL, '800.0000', '1.0000', '2019-06-11', 'received', '800.0000', '800.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1119, NULL, NULL, 729, 'G7-W-SPRAY-0006', 'G7 DAVIDOFF COOL WATER  SPREAY ', NULL, '1271.1864', '2.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '2.0000', '2019-06-11', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1120, NULL, NULL, 730, 'G7-W-SPRAY-0007', 'G7 OUD 24 HOURS  SPREAY ', NULL, '762.7119', '1.0000', 1, '137.2881', 5, '18.0000%', NULL, NULL, NULL, '900.0000', '1.0000', '2019-06-11', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1121, NULL, NULL, 731, 'G7-W-SPRAY-0008', 'G7 1 MILLION  SPREAY ', NULL, '2669.4915', '1.0000', 1, '480.5085', 5, '18.0000%', NULL, NULL, NULL, '3150.0000', '1.0000', '2019-06-11', 'received', '3150.0000', '3150.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1122, NULL, NULL, 732, 'G7-W-SPRAY-0009', 'G7 SHAIKH SHUKUYH SPREAY ', NULL, '720.3390', '1.0000', 1, '129.6610', 5, '18.0000%', NULL, NULL, NULL, '850.0000', '1.0000', '2019-06-11', 'received', '850.0000', '850.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1123, NULL, NULL, 733, 'G7-W-SPRAY-0010', 'G7 POLO GREEN SPREAY ', NULL, '2711.8644', '2.0000', 1, '976.2712', 5, '18.0000%', NULL, NULL, NULL, '6400.0000', '2.0000', '2019-06-11', 'received', '3200.0000', '3200.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1124, NULL, NULL, 734, 'G7-W-SPRAY-0011', 'G7 KOUROS SPREAY ', NULL, '2203.3898', '1.0000', 1, '396.6102', 5, '18.0000%', NULL, NULL, NULL, '2600.0000', '1.0000', '2019-06-11', 'received', '2600.0000', '2600.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1125, NULL, NULL, 735, 'G7-W-SPRAY-0012', 'G7 ETERNITY  SPREAY ', NULL, '1355.9322', '1.0000', 1, '244.0678', 5, '18.0000%', NULL, NULL, NULL, '1600.0000', '1.0000', '2019-06-11', 'received', '1600.0000', '1600.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1126, NULL, NULL, 736, 'G7-W-SPRAY-0013', 'G7 ARMANI CODE   SPREAY ', NULL, '2203.3898', '1.0000', 1, '396.6102', 5, '18.0000%', NULL, NULL, NULL, '2600.0000', '1.0000', '2019-06-11', 'received', '2600.0000', '2600.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1127, NULL, NULL, 737, 'G7-W-SPRAY-0014', 'G7 KHUSHAB&OUD   SPREAY ', NULL, '550.8475', '1.0000', 1, '99.1525', 5, '18.0000%', NULL, NULL, NULL, '650.0000', '1.0000', '2019-06-11', 'received', '650.0000', '650.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1128, NULL, NULL, 738, 'G7-W-SPRAY-0015', 'G7 LATTAFA   SPREAY ', NULL, '720.3390', '1.0000', 1, '129.6610', 5, '18.0000%', NULL, NULL, NULL, '850.0000', '1.0000', '2019-06-11', 'received', '850.0000', '850.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1129, NULL, NULL, 739, 'G7-W-SPRAY-0016', 'G7 MARQUIS SPREAY ', NULL, '635.5932', '1.0000', 1, '114.4068', 5, '18.0000%', NULL, NULL, NULL, '750.0000', '1.0000', '2019-06-11', 'received', '750.0000', '750.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1130, NULL, NULL, 740, 'G7-W-SPRAY-0017', 'G7 212MEN NYC SPREAY ', NULL, '2500.0000', '2.0000', 1, '900.0000', 5, '18.0000%', NULL, NULL, NULL, '5900.0000', '2.0000', '2019-06-11', 'received', '2950.0000', '2950.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1131, NULL, NULL, 741, 'G7-W-SPRAY-0018', 'G7 ISSEY MIYAKE  SPREAY ', NULL, '2372.8814', '2.0000', 1, '854.2373', 5, '18.0000%', NULL, NULL, NULL, '5600.0000', '2.0000', '2019-06-11', 'received', '2800.0000', '2800.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1132, NULL, NULL, 742, 'G7-W-SPRAY-0019', 'G7 NUIT DISSEY SPREAY ', NULL, '2372.8814', '1.0000', 1, '427.1186', 5, '18.0000%', NULL, NULL, NULL, '2800.0000', '1.0000', '2019-06-11', 'received', '2800.0000', '2800.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1133, NULL, NULL, 743, 'G7-W-SPRAY-0020', 'G7 VERSACE  SPREAY ', NULL, '305.0847', '3.0000', 1, '164.7458', 5, '18.0000%', NULL, NULL, NULL, '1080.0000', '3.0000', '2019-06-11', 'received', '360.0000', '360.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1134, NULL, NULL, 744, 'G7-W-SPRAY-0021', 'G7 TOMY GIRL  SPREAY ', NULL, '305.0847', '2.0000', 1, '109.8305', 5, '18.0000%', NULL, NULL, NULL, '720.0000', '2.0000', '2019-06-11', 'received', '360.0000', '360.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1135, NULL, NULL, 745, 'G7-W-SPRAY-0022', 'G7 GUCCI BY GUCCI  SPREAY ', NULL, '305.0847', '2.0000', 1, '109.8305', 5, '18.0000%', NULL, NULL, NULL, '720.0000', '2.0000', '2019-06-11', 'received', '360.0000', '360.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1136, NULL, NULL, 746, 'G7-W-SPRAY-0023', 'G7 ISSEY MIYAKE DEO', NULL, '305.0847', '2.0000', 1, '109.8305', 5, '18.0000%', NULL, NULL, NULL, '720.0000', '2.0000', '2019-06-11', 'received', '360.0000', '360.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1137, NULL, NULL, 747, 'G7-W-SPRAY-0024', 'G7 ACQUA DI GIO ARMANI DEO', NULL, '322.0339', '3.0000', 1, '173.8983', 5, '18.0000%', NULL, NULL, NULL, '1140.0000', '3.0000', '2019-06-11', 'received', '380.0000', '380.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1138, NULL, NULL, 748, 'G7-W-SPRAY-0025', 'G7 CK ONE SUMMER DEO', NULL, '296.6102', '2.0000', 1, '106.7797', 5, '18.0000%', NULL, NULL, NULL, '700.0000', '2.0000', '2019-06-11', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1139, NULL, NULL, 749, 'G7-W-SPRAY-0026', 'G7 COOL WATER DEO', NULL, '296.6102', '4.0000', 1, '213.5593', 5, '18.0000%', NULL, NULL, NULL, '1400.0000', '4.0000', '2019-06-11', 'received', '350.0000', '350.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1140, NULL, NULL, 750, 'G7-W-SPRAY-0027', 'G7  1 MILLION  DEO', NULL, '305.0847', '2.0000', 1, '109.8305', 5, '18.0000%', NULL, NULL, NULL, '720.0000', '2.0000', '2019-06-11', 'received', '360.0000', '360.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1141, NULL, NULL, 751, 'G7-W-SPRAY-0028', 'G7 STAG  DEO', NULL, '118.6441', '2.0000', 1, '42.7119', 5, '18.0000%', NULL, NULL, NULL, '280.0000', '2.0000', '2019-06-11', 'received', '140.0000', '140.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1142, NULL, NULL, 752, 'G7-W-SPRAY-0029', 'G7 ACTIVE  DEO', NULL, '118.6441', '3.0000', 1, '64.0678', 5, '18.0000%', NULL, NULL, NULL, '420.0000', '2.0000', '2019-06-11', 'received', '140.0000', '140.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1143, NULL, NULL, 753, 'G7-W-SPRAY-0030', 'G7 JOVAN WHITE MUSK   DEO', NULL, '118.6441', '3.0000', 1, '64.0678', 5, '18.0000%', NULL, NULL, NULL, '420.0000', '3.0000', '2019-06-11', 'received', '140.0000', '140.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1144, NULL, NULL, 754, 'G7-W-SPRAY-0031', 'G7 ROMANCE  DEO', NULL, '474.5763', '3.0000', 1, '256.2712', 5, '18.0000%', NULL, NULL, NULL, '1680.0000', '3.0000', '2019-06-11', 'received', '560.0000', '560.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1145, NULL, NULL, 755, 'G7-W-SPRAY-0032', 'G7 DOVE  DEO', NULL, '118.6441', '3.0000', 1, '64.0678', 5, '18.0000%', NULL, NULL, NULL, '420.0000', '3.0000', '2019-06-11', 'received', '140.0000', '140.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1146, NULL, NULL, 756, 'G7-W-SPRAY-0033', 'G7UNITED DREAMS  DEO', NULL, '118.6441', '9.0000', 1, '192.2034', 5, '18.0000%', NULL, NULL, NULL, '1260.0000', '9.0000', '2019-06-11', 'received', '140.0000', '140.0000', '9.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1147, NULL, NULL, 757, 'G7-W-SPRAY-0034', 'G7 MONT BLANC  DEO', NULL, '1525.4237', '1.0000', 1, '274.5763', 5, '18.0000%', NULL, NULL, NULL, '1800.0000', '1.0000', '2019-06-11', 'received', '1800.0000', '1800.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1148, NULL, NULL, 758, 'G7-W-SPRAY-0035', 'G7 LEGEND LUMANI   SPRAY', NULL, '491.5254', '2.0000', 1, '176.9492', 5, '18.0000%', NULL, NULL, NULL, '1160.0000', '2.0000', '2019-06-11', 'received', '580.0000', '580.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1149, NULL, NULL, 759, 'G7-W-SPRAY-0036', 'G7 MAXI  SPRAY', NULL, '508.4746', '2.0000', 1, '183.0508', 5, '18.0000%', NULL, NULL, NULL, '1200.0000', '2.0000', '2019-06-11', 'received', '600.0000', '600.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1150, NULL, NULL, 760, 'G7-W-SPRAY-0037', 'G7 ONE MAN SHOW SPRAY', NULL, '550.8475', '2.0000', 1, '198.3051', 5, '18.0000%', NULL, NULL, NULL, '1300.0000', '2.0000', '2019-06-11', 'received', '650.0000', '650.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1151, NULL, NULL, 761, 'G7-W-SPRAY-0038', 'G7 BVLGARI SPRAY', NULL, '550.8475', '4.0000', 1, '396.6102', 5, '18.0000%', NULL, NULL, NULL, '2600.0000', '4.0000', '2019-06-11', 'received', '650.0000', '650.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1152, NULL, NULL, 762, 'JI-M-IBLT-0132-48', 'JI Italian L Belt-IMPORTED', NULL, '550.8475', '1.0000', 1, '99.1525', 5, '18.0000%', NULL, NULL, NULL, '650.0000', '1.0000', '2019-06-12', 'received', '650.0000', '650.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1153, NULL, NULL, 763, 'JI-M-IBLT-0133-48', 'JI Italian L Belt-IMPORTED', NULL, '550.8475', '1.0000', 1, '99.1525', 5, '18.0000%', NULL, NULL, NULL, '650.0000', '1.0000', '2019-06-12', 'received', '650.0000', '650.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1154, NULL, NULL, 764, 'G7-M-LWLT-0058-4', 'G7 Gil Wallet-Combo', NULL, '186.4407', '96.0000', 1, '3221.6949', 5, '18.0000%', NULL, NULL, NULL, '21120.0000', '96.0000', '2019-06-21', 'received', '220.0000', '220.0000', '96.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1155, NULL, NULL, 765, 'G7-M-LWLT-0059-3', 'G7 Leather Wallet-BROWN', NULL, '186.4407', '100.0000', 1, '3355.9322', 5, '18.0000%', NULL, NULL, NULL, '22000.0000', '100.0000', '2019-06-21', 'received', '220.0000', '220.0000', '100.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1156, NULL, NULL, 766, 'G7-M-LWLT-0059-1', 'G7 Leather Wallet-BLACK', NULL, '186.4407', '95.0000', 1, '3188.1356', 5, '18.0000%', NULL, NULL, NULL, '20900.0000', '95.0000', '2019-06-21', 'received', '220.0000', '220.0000', '95.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1157, NULL, NULL, 767, 'G7-M-PWLT-0005', 'G7 Passport Wallet', NULL, '305.0847', '99.0000', 1, '5436.6102', 5, '18.0000%', NULL, NULL, NULL, '35640.0000', '99.0000', '2019-06-22', 'received', '360.0000', '360.0000', '99.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1158, NULL, NULL, 768, 'G7-M-PWLT-0006', 'G7 Passport Wallet', NULL, '182.2034', '96.0000', 1, '3148.4746', 5, '18.0000%', NULL, NULL, NULL, '20640.0000', '96.0000', '2019-06-22', 'received', '215.0000', '215.0000', '96.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1159, NULL, NULL, 769, 'G7-M-PWLT-0007', 'G7 Passport Wallet', NULL, '182.2034', '96.0000', 1, '3148.4746', 5, '18.0000%', NULL, NULL, NULL, '20640.0000', '96.0000', '2019-06-22', 'received', '215.0000', '215.0000', '96.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1160, NULL, NULL, 770, 'G7-M-LWLT-0060-1', 'G7 Leather Wallet-BLACK', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-22', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1161, NULL, NULL, 771, 'G7-M-LWLT-0060-3', 'G7 Leather Wallet-BROWN', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-22', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1162, NULL, NULL, 772, 'G7-M-LWLT-0060-4', 'G7 Leather Wallet-TAN', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-22', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1163, NULL, NULL, 773, 'G7-M-LWLT-0061-4', 'G7 Leather Wallet-TAN', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-25', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1164, NULL, NULL, 774, 'G7-M-LWLT-0061-3', 'G7 Leather Wallet-BROWN', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-25', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1165, NULL, NULL, 775, 'G7-M-LWLT-0061-1', 'G7 Leather Wallet-BLACK', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-25', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1166, NULL, NULL, 776, 'G7-M-LWLT-0062-1', 'G7 Leather Wallet-BLACK', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-25', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1167, NULL, NULL, 777, 'G7-M-LWLT-0062-3', 'G7 Leather Wallet-BROWN', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-25', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1168, NULL, NULL, 778, 'G7-M-LWLT-0062-4', 'G7 Leather Wallet-TAN', NULL, '203.3898', '283.0000', 1, '10360.6780', 5, '18.0000%', NULL, NULL, NULL, '67920.0000', '283.0000', '2019-06-25', 'received', '240.0000', '240.0000', '283.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1169, NULL, NULL, 779, 'JI-B-BBLT-0010', 'JI Baby Belt-30mm', NULL, '330.5085', '216.0000', 1, '12850.1695', 5, '18.0000%', NULL, NULL, NULL, '84240.0000', '216.0000', '2019-07-23', 'received', '390.0000', '390.0000', '216.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1170, 24, NULL, 780, 'LHB-01', 'LADIES HAND BAG', NULL, '36.7500', '1272.0000', 1, '8414.2800', 5, '18%', '0', '0.0000', NULL, '55160.2800', '1112.0000', '2019-08-01', 'received', '43.3700', '36.7500', '1272.0000', NULL, NULL, 2, 'PCS', '1272.0000', '18%', '0.0000', '0.0000', '8414.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1171, 24, NULL, 781, 'LHB-02', 'LADIES BACK PACK BAG', NULL, '36.7500', '576.0000', 1, '3810.2400', 5, '18%', '0', '0.0000', NULL, '24978.2400', '576.0000', '2019-08-01', 'received', '43.3700', '36.7500', '576.0000', NULL, NULL, 2, 'PCS', '576.0000', '18%', '0.0000', '0.0000', '3810.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1172, 24, NULL, 782, 'LHB-03', 'TROLLEY BAG(SMALL)', NULL, '276.0000', '16.0000', 1, '794.8800', 5, '18%', '0', '0.0000', NULL, '5210.8800', '16.0000', '2019-08-01', 'received', '325.6800', '276.0000', '16.0000', NULL, NULL, 2, 'PCS', '16.0000', '18%', '0.0000', '0.0000', '794.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1173, 25, NULL, 783, 'LHB-04', 'LADIES WALLET', NULL, '19.0000', '6552.0000', 1, '22407.8400', 5, '18%', '0', '0.0000', NULL, '146895.8400', '5072.0000', '2019-08-01', 'received', '22.4200', '19.0000', '6552.0000', NULL, NULL, 2, 'PCS', '6552.0000', '18%', '0.0000', '0.0000', '22407.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1174, 25, NULL, 784, 'LHB-05', 'TROLLEY BAG', NULL, '552.0000', '4.0000', 1, '397.4400', 5, '18%', '0', '0.0000', NULL, '2605.4400', '4.0000', '2019-08-01', 'received', '651.3600', '552.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '397.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1175, 25, NULL, 785, 'LHB-06', 'TROLLEY BAG(SMALL)', NULL, '276.0000', '16.0000', 1, '794.8800', 5, '18%', '0', '0.0000', NULL, '5210.8800', '16.0000', '2019-08-01', 'received', '325.6800', '276.0000', '16.0000', NULL, NULL, 2, 'PCS', '16.0000', '18%', '0.0000', '0.0000', '794.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1176, NULL, NULL, 786, 'G7-W-WLB-0043', 'G7 Ladies Hand Bag', NULL, '372.8814', '16.0000', 1, '1073.8983', 5, '18.0000%', NULL, NULL, NULL, '7040.0000', '8.0000', '2019-08-06', 'received', '440.0000', '440.0000', '16.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1177, NULL, NULL, 787, 'g7-M-BK-000', 'G7 Back Pack', NULL, '440.0000', '13.0000', 1, '1029.6000', 5, '18.0000%', NULL, NULL, NULL, '6749.6000', '3.0000', '2019-08-06', 'received', '519.2000', '519.2000', '13.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1178, NULL, NULL, 788, 'G7-M-BK-0020', 'G7 Back Pack', NULL, '540.0000', '14.0000', 1, '1360.8000', 5, '18.0000%', NULL, NULL, NULL, '8920.8000', '7.0000', '2019-08-06', 'received', '637.2000', '637.2000', '14.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1179, NULL, NULL, 789, 'G7-M-BK-0021', 'G7 Back Pack', NULL, '350.0000', '12.0000', 1, '756.0000', 5, '18.0000%', NULL, NULL, NULL, '4956.0000', '0.0000', '2019-08-06', 'received', '413.0000', '413.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1180, NULL, NULL, 790, 'G7-M-BK-0022', 'G7 Back Pack', NULL, '350.0000', '8.0000', 1, '504.0000', 5, '18.0000%', NULL, NULL, NULL, '3304.0000', '0.0000', '2019-08-06', 'received', '413.0000', '413.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1181, NULL, NULL, 791, 'G7-M-BK-0023', 'G7 Back Pack', NULL, '350.0000', '4.0000', 1, '252.0000', 5, '18.0000%', NULL, NULL, NULL, '1652.0000', '0.0000', '2019-08-06', 'received', '413.0000', '413.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1182, NULL, NULL, 792, 'G7-M-BK-0024', 'G7 Back Pack', NULL, '350.0000', '4.0000', 1, '252.0000', 5, '18.0000%', NULL, NULL, NULL, '1652.0000', '0.0000', '2019-08-06', 'received', '413.0000', '413.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1183, NULL, NULL, 793, 'G7-W-WLB-0044', 'G7 Ladies  combo hand Bag', NULL, '402.5424', '10.0000', 1, '724.5763', 5, '18.0000%', NULL, NULL, NULL, '4750.0000', '0.0000', '2019-08-06', 'received', '475.0000', '475.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1184, NULL, NULL, 794, 'G7-W-WLB-0045', 'G7 Ladies hand Bag', NULL, '635.5932', '8.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '4.0000', '2019-08-06', 'received', '750.0000', '750.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1185, NULL, NULL, 795, 'G7-W-WLB-0046', 'G7 Ladies hand Bag', NULL, '338.9831', '8.0000', 1, '488.1356', 5, '18.0000%', NULL, NULL, NULL, '3200.0000', '0.0000', '2019-08-06', 'received', '400.0000', '400.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1186, NULL, NULL, 796, 'G7-W-WLB-0047', 'G7 Ladies hand Bag', NULL, '372.8814', '4.0000', 1, '268.4746', 5, '18.0000%', NULL, NULL, NULL, '1760.0000', '0.0000', '2019-08-06', 'received', '440.0000', '440.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1187, NULL, NULL, 797, 'G7-W-WLB-0048', 'G7 Ladies hand Bag', NULL, '338.9831', '8.0000', 1, '488.1356', 5, '18.0000%', NULL, NULL, NULL, '3200.0000', '0.0000', '2019-08-06', 'received', '400.0000', '400.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1188, NULL, NULL, 798, 'G7-W-WLB-0049', 'G7 Ladies combo  hand Bag', NULL, '372.8814', '11.0000', 1, '738.3051', 5, '18.0000%', NULL, NULL, NULL, '4840.0000', '0.0000', '2019-08-06', 'received', '440.0000', '440.0000', '11.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1189, NULL, NULL, 799, 'G7-W-WLB-0050', 'G7 Ladies combo hand Bag', NULL, '372.8814', '12.0000', 1, '805.4237', 5, '18.0000%', NULL, NULL, NULL, '5280.0000', '0.0000', '2019-08-06', 'received', '440.0000', '440.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1190, NULL, NULL, 800, 'G7-W-WLB-0051', 'G7 Ladies combo hand Bag', NULL, '508.4746', '16.0000', 1, '1464.4068', 5, '18.0000%', NULL, NULL, NULL, '9600.0000', '8.0000', '2019-08-06', 'received', '600.0000', '600.0000', '16.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1191, NULL, NULL, 801, 'G7-W-WLB-0052', 'G7 Ladies  hand Bag', NULL, '338.9831', '6.0000', 1, '366.1017', 5, '18.0000%', NULL, NULL, NULL, '2400.0000', '0.0000', '2019-08-06', 'received', '400.0000', '400.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1192, NULL, NULL, 802, 'G7-W-WLB-0053', 'G7 Ladies  hand Bag', NULL, '305.0847', '10.0000', 1, '549.1525', 5, '18.0000%', NULL, NULL, NULL, '3600.0000', '0.0000', '2019-08-06', 'received', '360.0000', '360.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1193, NULL, NULL, 803, 'G7-W-WLB-0054', 'G7 Ladies hand Bag', NULL, '372.8814', '8.0000', 1, '536.9492', 5, '18.0000%', NULL, NULL, NULL, '3520.0000', '0.0000', '2019-08-06', 'received', '440.0000', '440.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1194, NULL, NULL, 804, 'G7-W-WLB-0055', 'G7 Ladies hand Bag', NULL, '847.4576', '3.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '2.0000', '2019-08-06', 'received', '1000.0000', '1000.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1195, NULL, NULL, 805, 'G7-W-WLB-0056', 'G7 Ladies hand Bag', NULL, '847.4576', '4.0000', 1, '610.1695', 5, '18.0000%', NULL, NULL, NULL, '4000.0000', '2.0000', '2019-08-06', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1196, NULL, NULL, 806, 'G7-W-WLB-0057', 'G7 Ladies hand Bag', NULL, '847.4576', '4.0000', 1, '610.1695', 5, '18.0000%', NULL, NULL, NULL, '4000.0000', '2.0000', '2019-08-06', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1197, NULL, NULL, 807, 'G7-W-WLB-0058', 'G7 Ladies hand Bag', NULL, '466.1017', '8.0000', 1, '671.1864', 5, '18.0000%', NULL, NULL, NULL, '4400.0000', '4.0000', '2019-08-06', 'received', '550.0000', '550.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1198, NULL, NULL, 808, 'G7-W-WLB-0059', 'G7 Ladies hand Bag', NULL, '847.4576', '6.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '3.0000', '2019-08-06', 'received', '1000.0000', '1000.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1199, NULL, NULL, 809, 'G7-W-WLB-0060', 'G7 Ladies hand Bag', NULL, '847.4576', '3.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '2.0000', '2019-08-06', 'received', '1000.0000', '1000.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1200, NULL, NULL, 810, 'G7-W-WLB-0061', 'G7 Ladies hand Bag', NULL, '847.4576', '4.0000', 1, '610.1695', 5, '18.0000%', NULL, NULL, NULL, '4000.0000', '2.0000', '2019-08-06', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1201, NULL, NULL, 811, 'G7-W-WLB-0062', 'G7 Ladies SideBag', NULL, '423.7288', '6.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '0.0000', '2019-08-06', 'received', '500.0000', '500.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1202, NULL, NULL, 812, 'G7-W-WLB-0063', 'G7 Ladies hand Bag', NULL, '847.4576', '4.0000', 1, '610.1695', 5, '18.0000%', NULL, NULL, NULL, '4000.0000', '2.0000', '2019-08-06', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1203, NULL, NULL, 813, 'G7-W-WLB-0064', 'G7 Ladies side Bag', NULL, '677.9661', '8.0000', 1, '976.2712', 5, '18.0000%', NULL, NULL, NULL, '6400.0000', '7.0000', '2019-08-06', 'received', '800.0000', '800.0000', '8.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1204, NULL, NULL, 814, 'G7-W-WLB-0065', 'G7 Ladies hand Bag', NULL, '847.4576', '4.0000', 1, '610.1695', 5, '18.0000%', NULL, NULL, NULL, '4000.0000', '2.0000', '2019-08-06', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1205, NULL, NULL, 815, 'G7-W-WLB-0066', 'G7 Ladies hand Bag', NULL, '593.2203', '6.0000', 1, '640.6780', 5, '18.0000%', NULL, NULL, NULL, '4200.0000', '3.0000', '2019-08-06', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1206, NULL, NULL, 816, 'G7-W-WLB-0067', 'G7 Ladies hand Bag', NULL, '593.2203', '6.0000', 1, '640.6780', 5, '18.0000%', NULL, NULL, NULL, '4200.0000', '4.0000', '2019-08-06', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1207, NULL, NULL, 817, 'G7-W-WLB-0068', 'G7 Ladies hand Bag', NULL, '423.7288', '6.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '6.0000', '2019-08-07', 'received', '500.0000', '500.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1208, NULL, NULL, 818, 'G7-W-WLB-0069', 'G7 Ladies hand Bag', NULL, '677.9661', '2.0000', 1, '244.0678', 5, '18.0000%', NULL, NULL, NULL, '1600.0000', '0.0000', '2019-08-07', 'received', '800.0000', '800.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1209, NULL, NULL, 819, 'G7-M-TB-0006', 'G7 Travelling Bag', NULL, '1355.9322', '2.0000', 1, '488.1356', 5, '18.0000%', NULL, NULL, NULL, '3200.0000', '0.0000', '2019-08-07', 'received', '1600.0000', '1600.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1210, NULL, NULL, 820, 'G7-M-TB-0007', 'G7 Travelling Bag', NULL, '1440.6780', '2.0000', 1, '518.6441', 5, '18.0000%', NULL, NULL, NULL, '3400.0000', '1.0000', '2019-08-07', 'received', '1700.0000', '1700.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1211, NULL, NULL, 821, 'G7-M-TB-0008', 'G7 Travelling Bag', NULL, '1440.6780', '2.0000', 1, '518.6441', 5, '18.0000%', NULL, NULL, NULL, '3400.0000', '1.0000', '2019-08-07', 'received', '1700.0000', '1700.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1247, NULL, 1, 814, 'G7-W-WLB-0065', 'G7 Ladies hand Bag', NULL, '847.4576', '2.0000', 2, '305.0848', 5, '18%', NULL, NULL, NULL, '2000.0000', '2.0000', '2019-08-12', 'received', '1000.0000', '1000.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '305.0848');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1248, NULL, 1, 578, 'G7-W-WLB-0039', 'G7 Ladies Bag', NULL, '296.6102', '1.0000', 2, '53.3898', 5, '18%', NULL, NULL, NULL, '350.0000', '1.0000', '2019-08-12', 'received', '350.0000', '350.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '53.3898');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1249, NULL, 1, 811, 'G7-W-WLB-0062', 'G7 Ladies SideBag', NULL, '423.7288', '3.0000', 2, '228.8136', 5, '18%', NULL, NULL, NULL, '1500.0000', '3.0000', '2019-08-12', 'received', '500.0000', '500.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '228.8136');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1250, NULL, 1, 803, 'G7-W-WLB-0054', 'G7 Ladies hand Bag', NULL, '372.8814', '4.0000', 2, '268.4744', 5, '18%', NULL, NULL, NULL, '1760.0000', '4.0000', '2019-08-12', 'received', '440.0000', '440.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '268.4744');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1251, NULL, 1, 802, 'G7-W-WLB-0053', 'G7 Ladies  hand Bag', NULL, '305.0847', '5.0000', 2, '274.5765', 5, '18%', NULL, NULL, NULL, '1800.0000', '5.0000', '2019-08-12', 'received', '360.0000', '360.0000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '274.5765');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1252, NULL, 1, 801, 'G7-W-WLB-0052', 'G7 Ladies  hand Bag', NULL, '338.9831', '3.0000', 2, '183.0507', 5, '18%', NULL, NULL, NULL, '1200.0000', '3.0000', '2019-08-12', 'received', '400.0000', '400.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '183.0507');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1253, NULL, 1, 799, 'G7-W-WLB-0050', 'G7 Ladies combo hand Bag', NULL, '372.8814', '6.0000', 2, '402.7116', 5, '18%', NULL, NULL, NULL, '2640.0000', '6.0000', '2019-08-12', 'received', '440.0000', '440.0000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '402.7116');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1254, NULL, 1, 798, 'G7-W-WLB-0049', 'G7 Ladies combo  hand Bag', NULL, '372.8814', '5.0000', 2, '335.5930', 5, '18%', NULL, NULL, NULL, '2200.0000', '5.0000', '2019-08-12', 'received', '440.0000', '440.0000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '335.5930');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1255, NULL, 1, 797, 'G7-W-WLB-0048', 'G7 Ladies hand Bag', NULL, '338.9831', '4.0000', 2, '244.0676', 5, '18%', NULL, NULL, NULL, '1600.0000', '4.0000', '2019-08-12', 'received', '400.0000', '400.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.0676');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1256, NULL, 1, 795, 'G7-W-WLB-0046', 'G7 Ladies hand Bag', NULL, '338.9831', '4.0000', 2, '244.0676', 5, '18%', NULL, NULL, NULL, '1600.0000', '4.0000', '2019-08-12', 'received', '400.0000', '400.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.0676');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1257, NULL, 1, 793, 'G7-W-WLB-0044', 'G7 Ladies  combo hand Bag', NULL, '402.5424', '5.0000', 2, '362.2880', 5, '18%', NULL, NULL, NULL, '2375.0000', '5.0000', '2019-08-12', 'received', '475.0000', '475.0000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '362.2880');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1258, NULL, 1, 792, 'G7-M-BK-0024', 'G7 Back Pack', NULL, '296.6102', '2.0000', 2, '106.7796', 5, '18%', NULL, NULL, NULL, '700.0000', '2.0000', '2019-08-12', 'received', '350.0000', '350.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '106.7796');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1259, NULL, 1, 791, 'G7-M-BK-0023', 'G7 Back Pack', NULL, '296.6102', '2.0000', 2, '106.7796', 5, '18%', NULL, NULL, NULL, '700.0000', '2.0000', '2019-08-12', 'received', '350.0000', '350.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '106.7796');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1260, NULL, 1, 790, 'G7-M-BK-0022', 'G7 Back Pack', NULL, '296.6102', '4.0000', 2, '213.5592', 5, '18%', NULL, NULL, NULL, '1400.0000', '4.0000', '2019-08-12', 'received', '350.0000', '350.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '213.5592');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1261, NULL, 1, 789, 'G7-M-BK-0021', 'G7 Back Pack', NULL, '296.6102', '6.0000', 2, '320.3388', 5, '18%', NULL, NULL, NULL, '2100.0000', '6.0000', '2019-08-12', 'received', '350.0000', '350.0000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '320.3388');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1262, NULL, 1, 787, 'G7-M-BK-0019', 'G7 Back Pack', NULL, '372.8814', '5.0000', 2, '335.5930', 5, '18%', NULL, NULL, NULL, '2200.0000', '5.0000', '2019-08-12', 'received', '440.0000', '440.0000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '335.5930');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1263, NULL, 1, 786, 'G7-W-WLB-0043', 'G7 Ladies Hand Bag', NULL, '372.8814', '4.0000', 2, '268.4744', 5, '18%', NULL, NULL, NULL, '1760.0000', '4.0000', '2019-08-12', 'received', '440.0000', '440.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '268.4744');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1264, NULL, 1, 818, 'G7-W-WLB-0069', 'G7 Ladies hand Bag', NULL, '677.9661', '2.0000', 2, '244.0678', 5, '18%', NULL, NULL, NULL, '1600.0000', '2.0000', '2019-08-12', 'received', '800.0000', '800.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '244.0678');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1265, NULL, 1, 816, 'G7-W-WLB-0067', 'G7 Ladies hand Bag', NULL, '593.2203', '2.0000', 2, '213.5594', 5, '18%', NULL, NULL, NULL, '1400.0000', '2.0000', '2019-08-12', 'received', '700.0000', '700.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '213.5594');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1266, NULL, 1, 815, 'G7-W-WLB-0066', 'G7 Ladies hand Bag', NULL, '593.2203', '3.0000', 2, '320.3391', 5, '18%', NULL, NULL, NULL, '2100.0000', '3.0000', '2019-08-12', 'received', '700.0000', '700.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '320.3391');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1267, NULL, 1, 813, 'G7-W-WLB-0064', 'G7 Ladies side Bag', NULL, '677.9661', '1.0000', 2, '122.0339', 5, '18%', NULL, NULL, NULL, '800.0000', '1.0000', '2019-08-12', 'received', '800.0000', '800.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '122.0339');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1268, NULL, 1, 812, 'G7-W-WLB-0063', 'G7 Ladies hand Bag', NULL, '847.4576', '2.0000', 2, '305.0848', 5, '18%', NULL, NULL, NULL, '2000.0000', '2.0000', '2019-08-12', 'received', '1000.0000', '1000.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '305.0848');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1269, NULL, 1, 810, 'G7-W-WLB-0061', 'G7 Ladies hand Bag', NULL, '847.4576', '2.0000', 2, '305.0848', 5, '18%', NULL, NULL, NULL, '2000.0000', '2.0000', '2019-08-12', 'received', '1000.0000', '1000.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '305.0848');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1270, NULL, 1, 809, 'G7-W-WLB-0060', 'G7 Ladies hand Bag', NULL, '847.4576', '1.0000', 2, '152.5424', 5, '18%', NULL, NULL, NULL, '1000.0000', '1.0000', '2019-08-12', 'received', '1000.0000', '1000.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '152.5424');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1271, NULL, 1, 808, 'G7-W-WLB-0059', 'G7 Ladies hand Bag', NULL, '847.4576', '3.0000', 2, '457.6272', 5, '18%', NULL, NULL, NULL, '3000.0000', '3.0000', '2019-08-12', 'received', '1000.0000', '1000.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '457.6272');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1272, NULL, 1, 807, 'G7-W-WLB-0058', 'G7 Ladies hand Bag', NULL, '466.1017', '4.0000', 2, '335.5932', 5, '18%', NULL, NULL, NULL, '2200.0000', '4.0000', '2019-08-12', 'received', '550.0000', '550.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '335.5932');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1273, NULL, 1, 806, 'G7-W-WLB-0057', 'G7 Ladies hand Bag', NULL, '847.4576', '2.0000', 2, '305.0848', 5, '18%', NULL, NULL, NULL, '2000.0000', '2.0000', '2019-08-12', 'received', '1000.0000', '1000.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '305.0848');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1274, NULL, 1, 805, 'G7-W-WLB-0056', 'G7 Ladies hand Bag', NULL, '847.4576', '2.0000', 2, '305.0848', 5, '18%', NULL, NULL, NULL, '2000.0000', '2.0000', '2019-08-12', 'received', '1000.0000', '1000.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '305.0848');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1275, NULL, 1, 804, 'G7-W-WLB-0055', 'G7 Ladies hand Bag', NULL, '847.4576', '1.0000', 2, '152.5424', 5, '18%', NULL, NULL, NULL, '1000.0000', '1.0000', '2019-08-12', 'received', '1000.0000', '1000.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '152.5424');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1276, NULL, 1, 800, 'G7-W-WLB-0051', 'G7 Ladies combo hand Bag', NULL, '508.4746', '8.0000', 2, '732.2032', 5, '18%', NULL, NULL, NULL, '4800.0000', '8.0000', '2019-08-12', 'received', '600.0000', '600.0000', NULL, NULL, NULL, 2, 'PCS', '8.0000', '18%', '0.0000', '0.0000', '732.2032');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1277, NULL, 1, 794, 'G7-W-WLB-0045', 'G7 Ladies hand Bag', NULL, '635.5932', '4.0000', 2, '457.6272', 5, '18%', NULL, NULL, NULL, '3000.0000', '4.0000', '2019-08-12', 'received', '750.0000', '750.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '457.6272');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1278, NULL, 1, 788, 'G7-M-BK-0020', 'G7 Back Pack', NULL, '540.0000', '7.0000', 2, '680.4000', 5, '18%', NULL, NULL, NULL, '4460.4000', '7.0000', '2019-08-12', 'received', '637.2000', '540.0000', NULL, NULL, NULL, 2, 'PCS', '7.0000', '18%', '0.0000', '0.0000', '680.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1279, NULL, 1, 821, 'G7-M-TB-0008', 'G7 Travelling Bag', NULL, '1440.6780', '1.0000', 2, '259.3220', 5, '18%', NULL, NULL, NULL, '1700.0000', '1.0000', '2019-08-12', 'received', '1700.0000', '1700.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '259.3220');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1280, NULL, 1, 820, 'G7-M-TB-0007', 'G7 Travelling Bag', NULL, '1440.6780', '1.0000', 2, '259.3220', 5, '18%', NULL, NULL, NULL, '1700.0000', '1.0000', '2019-08-12', 'received', '1700.0000', '1700.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '259.3220');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1281, NULL, 1, 819, 'G7-M-TB-0006', 'G7 Travelling Bag', NULL, '1355.9322', '2.0000', 2, '488.1356', 5, '18%', NULL, NULL, NULL, '3200.0000', '2.0000', '2019-08-12', 'received', '1600.0000', '1600.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '488.1356');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1282, NULL, NULL, 822, 'ls-patti-0001', 'LS Leather Stripes', NULL, '39.0000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '46.0200', '46.0200', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1283, NULL, NULL, 822, 'ls-patti-0001', 'LS Leather Stripes', NULL, '39.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '46.0200', '46.0200', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1285, NULL, NULL, 823, 'G7-W-WC-0011', 'G7 Calch', NULL, '53.3898', '6.0000', 2, '57.6610', 5, '18.0000%', NULL, NULL, NULL, '378.0000', '0.0000', '2019-08-13', 'received', '63.0000', '63.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1286, NULL, NULL, 824, 'G7-W-WC-0012', 'G7 Calch', NULL, '53.3898', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '63.0000', '63.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1287, NULL, NULL, 824, 'G7-W-WC-0012', 'G7 Calch', NULL, '53.3898', '5.0000', 2, '48.0508', 5, '18.0000%', NULL, NULL, NULL, '315.0000', '0.0000', '2019-08-13', 'received', '63.0000', '63.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1288, NULL, NULL, 825, 'G7-W-WC-0013', 'G7 Calch', NULL, '114.4068', '5.0000', 1, '102.9661', 5, '18.0000%', NULL, NULL, NULL, '675.0000', '0.0000', '2019-08-13', 'received', '135.0000', '135.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1289, NULL, NULL, 825, 'G7-W-WC-0013', 'G7 Calch', NULL, '114.4068', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '135.0000', '135.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1290, NULL, NULL, 826, 'G7-W-WC-0014', 'G7 Calch', NULL, '102.9661', '6.0000', 1, '111.2034', 5, '18.0000%', NULL, NULL, NULL, '729.0000', '0.0000', '2019-08-13', 'received', '121.5000', '121.5000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1291, NULL, NULL, 826, 'G7-W-WC-0014', 'G7 Calch', NULL, '102.9661', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '121.5000', '121.5000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1292, NULL, NULL, 827, 'G7-W-WC-0015', 'G7 Calch', NULL, '129.6610', '5.0000', 1, '116.6949', 5, '18.0000%', NULL, NULL, NULL, '765.0000', '0.0000', '2019-08-13', 'received', '153.0000', '153.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1293, NULL, NULL, 827, 'G7-W-WC-0015', 'G7 Calch', NULL, '129.6610', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '153.0000', '153.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1294, NULL, NULL, 828, 'G7-W-WC-0016', 'G7 Calch', NULL, '125.8475', '4.0000', 1, '90.6102', 5, '18.0000%', NULL, NULL, NULL, '594.0000', '0.0000', '2019-08-13', 'received', '148.5000', '148.5000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1295, NULL, NULL, 828, 'G7-W-WC-0016', 'G7 Calch', NULL, '125.8475', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '148.5000', '148.5000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1296, NULL, NULL, 829, 'G7-W-WC-0017', 'G7 Calch', NULL, '125.8475', '4.0000', 1, '90.6102', 5, '18.0000%', NULL, NULL, NULL, '594.0000', '0.0000', '2019-08-13', 'received', '148.5000', '148.5000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1297, NULL, NULL, 829, 'G7-W-WC-0017', 'G7 Calch', NULL, '125.8475', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '148.5000', '148.5000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1298, NULL, NULL, 830, 'G7-W-WC-0018', 'G7 Calch', NULL, '110.5932', '5.0000', 1, '99.5339', 5, '18.0000%', NULL, NULL, NULL, '652.5000', '5.0000', '2019-08-13', 'received', '130.5000', '130.5000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1299, NULL, NULL, 830, 'G7-W-WC-0018', 'G7 Calch', NULL, '110.5932', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '130.5000', '130.5000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1300, NULL, NULL, 831, 'G7-W-WC-0019', 'G7 Calch', NULL, '114.4068', '3.0000', 1, '61.7797', 5, '18.0000%', NULL, NULL, NULL, '405.0000', '0.0000', '2019-08-13', 'received', '135.0000', '135.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1301, NULL, NULL, 831, 'G7-W-WC-0019', 'G7 Calch', NULL, '114.4068', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '135.0000', '135.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1302, NULL, NULL, 832, 'G7-W-WLB-0070', 'G7 Ladies side Bag', NULL, '114.4068', '10.0000', 1, '205.9322', 5, '18.0000%', NULL, NULL, NULL, '1350.0000', '6.0000', '2019-08-13', 'received', '135.0000', '135.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1303, NULL, NULL, 832, 'G7-W-WLB-0070', 'G7 Ladies side Bag', NULL, '114.4068', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-13', 'received', '135.0000', '135.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1304, NULL, NULL, 833, 'G7-W-WLB-0071', 'G7 Ladies Hend Bag', NULL, '274.5763', '3.0000', 1, '148.2712', 5, '18.0000%', NULL, NULL, NULL, '972.0000', '4.0000', '2019-08-14', 'received', '324.0000', '324.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1305, NULL, NULL, 833, 'G7-W-WLB-0071', 'G7 Ladies Hend Bag', NULL, '274.5763', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-14', 'received', '324.0000', '324.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1306, NULL, NULL, 834, 'G7-W-WLB-0072', 'G7 Ladies sideBag', NULL, '133.4746', '4.0000', 1, '96.1017', 5, '18.0000%', NULL, NULL, NULL, '630.0000', '0.0000', '2019-08-14', 'received', '157.5000', '157.5000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1307, NULL, NULL, 834, 'G7-W-WLB-0072', 'G7 Ladies sideBag', NULL, '133.4746', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-14', 'received', '157.5000', '157.5000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1308, NULL, NULL, 835, 'G7-M-BK-0025', 'G7 Small  Back Pack', NULL, '129.6610', '2.0000', 1, '46.6780', 5, '18.0000%', NULL, NULL, NULL, '306.0000', '2.0000', '2019-08-14', 'received', '153.0000', '153.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1309, NULL, NULL, 835, 'G7-M-BK-0025', 'G7 Small  Back Pack', NULL, '129.6610', '2.0000', 2, '46.6780', 5, '18.0000%', NULL, NULL, NULL, '306.0000', '-2.0000', '2019-08-14', 'received', '153.0000', '153.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1310, NULL, NULL, 836, 'G7-W-WLB-0073', 'G7 Ladies side Bag', NULL, '133.4746', '4.0000', 1, '96.1017', 5, '18.0000%', NULL, NULL, NULL, '630.0000', '0.0000', '2019-08-14', 'received', '157.5000', '157.5000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1311, NULL, NULL, 836, 'G7-W-WLB-0073', 'G7 Ladies side Bag', NULL, '133.4746', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-14', 'received', '157.5000', '157.5000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1312, NULL, NULL, 837, 'G7-W-WC-0020', 'G7 Calch', NULL, '102.9661', '2.0000', 1, '37.0678', 5, '18.0000%', NULL, NULL, NULL, '243.0000', '0.0000', '2019-08-14', 'received', '121.5000', '121.5000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1313, NULL, NULL, 837, 'G7-W-WC-0020', 'G7 Calch', NULL, '102.9661', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-14', 'received', '121.5000', '121.5000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1314, NULL, NULL, 838, 'G7-W-WLB-0074', 'G7 Ladies side Bag', NULL, '602.5424', '2.0000', 1, '216.9153', 5, '18.0000%', NULL, NULL, NULL, '1422.0000', '0.0000', '2019-08-14', 'received', '711.0000', '711.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1315, NULL, NULL, 838, 'G7-W-WLB-0074', 'G7 Ladies side Bag', NULL, '602.5424', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-14', 'received', '711.0000', '711.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1316, NULL, NULL, 839, 'G7-W-WLB-0075', 'G7 Ladies hend Bag', NULL, '251.6949', '2.0000', 1, '90.6102', 5, '18.0000%', NULL, NULL, NULL, '594.0000', '0.0000', '2019-08-14', 'received', '297.0000', '297.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1317, NULL, NULL, 839, 'G7-W-WLB-0075', 'G7 Ladies hend Bag', NULL, '251.6949', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-08-14', 'received', '297.0000', '297.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1318, NULL, NULL, 840, 'G7-M-BK-0026', 'G7 Small  Back Pack', NULL, '133.4746', '2.0000', 1, '48.0508', 5, '18.0000%', NULL, NULL, NULL, '315.0000', '2.0000', '2019-08-14', 'received', '157.5000', '157.5000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1319, NULL, NULL, 823, 'G7-W-WC-0011', 'G7 Calch', NULL, '53.3898', '6.0000', 1, '9.6102', 5, '18%', NULL, NULL, NULL, '378.0000', '0.0000', '2019-08-14', 'received', '63.0000', '63.0000', '6.0000', NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '57.6612');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1320, NULL, 2, 823, 'G7-W-WC-0011', 'G7 Calch', NULL, '53.3898', '6.0000', 2, '57.6612', 5, '18%', NULL, NULL, NULL, '378.0000', '6.0000', '2019-08-14', 'received', '63.0000', '63.0000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '57.6612');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1321, NULL, 2, 824, 'G7-W-WC-0012', 'G7 Calch', NULL, '76.2712', '5.0000', 2, '68.6440', 5, '18%', NULL, NULL, NULL, '450.0000', '5.0000', '2019-08-14', 'received', '90.0000', '90.0000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '68.6440');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1322, NULL, 2, 825, 'G7-W-WC-0013', 'G7 Calch', NULL, '114.4068', '5.0000', 2, '102.9660', 5, '18%', NULL, NULL, NULL, '675.0000', '5.0000', '2019-08-14', 'received', '135.0000', '135.0000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '102.9660');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1323, NULL, 2, 826, 'G7-W-WC-0014', 'G7 Calch', NULL, '102.9661', '6.0000', 2, '111.2034', 5, '18%', NULL, NULL, NULL, '729.0000', '6.0000', '2019-08-14', 'received', '121.5000', '121.5000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '111.2034');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1324, NULL, 2, 827, 'G7-W-WC-0015', 'G7 Calch', NULL, '129.6610', '5.0000', 2, '116.6950', 5, '18%', NULL, NULL, NULL, '765.0000', '5.0000', '2019-08-14', 'received', '153.0000', '153.0000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '116.6950');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1325, NULL, 2, 828, 'G7-W-WC-0016', 'G7 Calch', NULL, '125.8475', '4.0000', 2, '90.6100', 5, '18%', NULL, NULL, NULL, '594.0000', '4.0000', '2019-08-14', 'received', '148.5000', '148.5000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '90.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1326, NULL, 2, 829, 'G7-W-WC-0017', 'G7 Calch', NULL, '125.8475', '4.0000', 2, '90.6100', 5, '18%', NULL, NULL, NULL, '594.0000', '4.0000', '2019-08-14', 'received', '148.5000', '148.5000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '90.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1327, NULL, 2, 830, 'G7-W-WC-0018', 'G7 Calch', NULL, '110.5932', '5.0000', 2, '99.5340', 5, '18%', NULL, NULL, NULL, '652.5000', '5.0000', '2019-08-14', 'received', '130.5000', '130.5000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '99.5340');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1328, NULL, 2, 832, 'G7-W-WLB-0070', 'G7 Ladies side Bag', NULL, '114.4068', '10.0000', 2, '205.9320', 5, '18%', NULL, NULL, NULL, '1350.0000', '10.0000', '2019-08-14', 'received', '135.0000', '135.0000', NULL, NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '205.9320');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1329, NULL, 2, 833, 'G7-W-WLB-0071', 'G7 Ladies Hend Bag', NULL, '274.5763', '3.0000', 2, '148.2711', 5, '18%', NULL, NULL, NULL, '972.0000', '3.0000', '2019-08-14', 'received', '324.0000', '324.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '148.2711');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1330, NULL, 2, 834, 'G7-W-WLB-0072', 'G7 Ladies sideBag', NULL, '133.4746', '4.0000', 2, '96.1016', 5, '18%', NULL, NULL, NULL, '630.0000', '4.0000', '2019-08-14', 'received', '157.5000', '157.5000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '96.1016');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1331, NULL, 2, 835, 'G7-M-BK-0025', 'G7 Small  Back Pack', NULL, '129.6610', '2.0000', 2, '46.6780', 5, '18%', NULL, NULL, NULL, '306.0000', '2.0000', '2019-08-14', 'received', '153.0000', '153.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '46.6780');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1332, NULL, 2, 836, 'G7-W-WLB-0073', 'G7 Ladies side Bag', NULL, '133.4746', '4.0000', 2, '96.1016', 5, '18%', NULL, NULL, NULL, '630.0000', '4.0000', '2019-08-14', 'received', '157.5000', '157.5000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '96.1016');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1333, NULL, 2, 837, 'G7-W-WC-0020', 'G7 Calch', NULL, '102.9661', '2.0000', 2, '37.0678', 5, '18%', NULL, NULL, NULL, '243.0000', '2.0000', '2019-08-14', 'received', '121.5000', '121.5000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '37.0678');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1334, NULL, 2, 838, 'G7-W-WLB-0074', 'G7 Ladies side Bag', NULL, '602.5424', '3.0000', 2, '325.3728', 5, '18%', NULL, NULL, NULL, '2133.0000', '3.0000', '2019-08-14', 'received', '711.0000', '711.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '325.3728');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1335, NULL, 2, 839, 'G7-W-WLB-0075', 'G7 Ladies hend Bag', NULL, '251.6949', '2.0000', 2, '90.6102', 5, '18%', NULL, NULL, NULL, '594.0000', '2.0000', '2019-08-14', 'received', '297.0000', '297.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '90.6102');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1336, NULL, 2, 840, 'G7-M-BK-0026', 'G7 Small  Back Pack', NULL, '133.4746', '2.0000', 2, '48.0508', 5, '18%', NULL, NULL, NULL, '315.0000', '0.0000', '2019-08-14', 'received', '157.5000', '157.5000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '48.0508');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1337, NULL, 3, 797, 'G7-W-WLB-0048', 'G7 Ladies hand Bag', NULL, '338.9831', '3.0000', 2, '183.0507', 5, '18%', NULL, NULL, NULL, '1200.0000', '3.0000', '2019-08-14', 'received', '400.0000', '400.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '183.0507');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1338, NULL, 3, 801, 'G7-W-WLB-0052', 'G7 Ladies  hand Bag', NULL, '338.9831', '1.0000', 2, '61.0169', 5, '18%', NULL, NULL, NULL, '400.0000', '1.0000', '2019-08-14', 'received', '400.0000', '400.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '61.0169');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1342, NULL, 4, 831, 'G7-W-WC-0019', 'G7 Calch', NULL, '114.4068', '3.0000', 2, '61.7796', 5, '18%', NULL, NULL, NULL, '405.0000', '3.0000', '2019-08-21', 'received', '135.0000', '135.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '61.7796');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1343, NULL, NULL, 841, 'BU-0002', 'BUCKLE(FOR WAIST BELT)', NULL, '11.5000', '8736.0000', 1, '18083.5200', 5, '18.0000%', NULL, NULL, NULL, '118547.5200', '8736.0000', '2019-08-22', 'received', '13.5700', '13.5700', '8736.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1344, 27, NULL, 842, 'BU-0001', 'BUCKLE(FOR WAIST BELT)', NULL, '11.5000', '8736.0000', 1, '18083.5200', 5, '18%', '0', '0.0000', NULL, '118547.5200', '8381.0000', '2019-08-22', 'received', '13.5700', '13.5700', '8736.0000', NULL, NULL, 2, 'PCS', '8736.0000', '18%', '0.0000', '0.0000', '18083.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1345, NULL, NULL, 843, 'G7-W-WC-0021', 'G7 Calch', NULL, '211.8644', '4.0000', 1, '152.5424', 5, '18.0000%', NULL, NULL, NULL, '1000.0000', '0.0000', '2019-08-29', 'received', '250.0000', '250.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1346, NULL, NULL, 843, 'G7-W-WC-0021', 'G7 Calch', NULL, '211.8644', '2.0000', 2, '76.2712', 5, '18.0000%', NULL, NULL, NULL, '500.0000', '2.0000', '2019-08-29', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1347, NULL, NULL, 844, 'G7-W-WLB-0080', 'G7 Ladies sideBag', NULL, '338.9831', '1.0000', 1, '61.0169', 5, '18.0000%', NULL, NULL, NULL, '400.0000', '0.0000', '2019-08-29', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1348, NULL, NULL, 844, 'G7-W-WLB-0080', 'G7 Ladies sideBag', NULL, '338.9831', '4.0000', 2, '244.0678', 5, '18.0000%', NULL, NULL, NULL, '1600.0000', '4.0000', '2019-08-29', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1349, NULL, 5, 843, 'G7-W-WC-0021', 'G7 Calch', NULL, '211.8644', '4.0000', 2, '152.5424', 5, '18%', NULL, NULL, NULL, '1000.0000', '4.0000', '2019-09-02', 'received', '250.0000', '250.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '152.5424');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1350, NULL, 5, 844, 'G7-W-WLB-0080', 'G7 Ladies sideBag', NULL, '338.9831', '1.0000', 2, '61.0169', 5, '18%', NULL, NULL, NULL, '400.0000', '1.0000', '2019-09-02', 'received', '400.0000', '400.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '61.0169');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1351, NULL, NULL, 578, 'G7-W-WLB-0039', 'G7 Ladies Bag', NULL, '923.7288', '1.0000', 1, '166.2712', 5, '18%', NULL, NULL, NULL, '1090.0000', '1.0000', '2019-09-04', 'received', '1090.0000', '1090.0000', '1.0000', NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '166.2712');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1352, NULL, NULL, 811, 'G7-W-WLB-0062', 'G7 Ladies SideBag', NULL, '423.7288', '3.0000', 1, '76.2712', 5, '18%', NULL, NULL, NULL, '1500.0000', '3.0000', '2019-09-04', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '228.8136');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1353, NULL, NULL, 803, 'G7-W-WLB-0054', 'G7 Ladies hand Bag', NULL, '372.8814', '3.0000', 1, '67.1186', 5, '18%', NULL, NULL, NULL, '1320.0000', '3.0000', '2019-09-04', 'received', '440.0000', '440.0000', '3.0000', NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '201.3558');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1354, NULL, NULL, 802, 'G7-W-WLB-0053', 'G7 Ladies  hand Bag', NULL, '305.0847', '4.0000', 1, '54.9153', 5, '18%', NULL, NULL, NULL, '1440.0000', '2.0000', '2019-09-04', 'received', '360.0000', '360.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '219.6612');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1355, NULL, NULL, 801, 'G7-W-WLB-0052', 'G7 Ladies  hand Bag', NULL, '338.9831', '3.0000', 1, '61.0169', 5, '18%', NULL, NULL, NULL, '1200.0000', '3.0000', '2019-09-04', 'received', '400.0000', '400.0000', '3.0000', NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '183.0507');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1356, NULL, NULL, 799, 'G7-W-WLB-0050', 'G7 Ladies combo hand Bag', NULL, '372.8814', '6.0000', 1, '67.1186', 5, '18%', NULL, NULL, NULL, '2640.0000', '6.0000', '2019-09-04', 'received', '440.0000', '440.0000', '6.0000', NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '402.7116');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1357, NULL, NULL, 798, 'G7-W-WLB-0049', 'G7 Ladies combo  hand Bag', NULL, '372.8814', '6.0000', 1, '67.1186', 5, '18%', NULL, NULL, NULL, '2640.0000', '6.0000', '2019-09-04', 'received', '440.0000', '440.0000', '6.0000', NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '402.7116');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1358, NULL, NULL, 797, 'G7-W-WLB-0048', 'G7 Ladies hand Bag', NULL, '338.9831', '4.0000', 1, '61.0169', 5, '18%', NULL, NULL, NULL, '1600.0000', '4.0000', '2019-09-04', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.0676');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1359, NULL, NULL, 796, 'G7-W-WLB-0047', 'G7 Ladies hand Bag', NULL, '372.8814', '4.0000', 1, '67.1186', 5, '18%', NULL, NULL, NULL, '1760.0000', '4.0000', '2019-09-04', 'received', '440.0000', '440.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '268.4744');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1360, NULL, NULL, 795, 'G7-W-WLB-0046', 'G7 Ladies hand Bag', NULL, '338.9831', '4.0000', 1, '61.0169', 5, '18%', NULL, NULL, NULL, '1600.0000', '4.0000', '2019-09-04', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '244.0676');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1361, NULL, NULL, 793, 'G7-W-WLB-0044', 'G7 Ladies  combo hand Bag', NULL, '402.5424', '5.0000', 1, '72.4576', 5, '18%', NULL, NULL, NULL, '2375.0000', '5.0000', '2019-09-04', 'received', '475.0000', '475.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '362.2880');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1362, NULL, NULL, 792, 'G7-M-BK-0024', 'G7 Back Pack', NULL, '296.6102', '2.0000', 1, '53.3898', 5, '18%', NULL, NULL, NULL, '700.0000', '2.0000', '2019-09-04', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '106.7796');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1363, NULL, NULL, 791, 'G7-M-BK-0023', 'G7 Back Pack', NULL, '296.6102', '2.0000', 1, '53.3898', 5, '18%', NULL, NULL, NULL, '700.0000', '2.0000', '2019-09-04', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '106.7796');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1364, NULL, NULL, 790, 'G7-M-BK-0022', 'G7 Back Pack', NULL, '296.6102', '3.0000', 1, '53.3898', 5, '18%', NULL, NULL, NULL, '1050.0000', '3.0000', '2019-09-04', 'received', '350.0000', '350.0000', '3.0000', NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '160.1694');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1365, NULL, NULL, 789, 'G7-M-BK-0021', 'G7 Back Pack', NULL, '296.6102', '6.0000', 1, '53.3898', 5, '18%', NULL, NULL, NULL, '2100.0000', '6.0000', '2019-09-04', 'received', '350.0000', '350.0000', '6.0000', NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '320.3388');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1366, NULL, NULL, 787, 'G7-M-BK-0019', 'G7 Back Pack', NULL, '372.8814', '5.0000', 1, '67.1186', 5, '18%', NULL, NULL, NULL, '2200.0000', '5.0000', '2019-09-04', 'received', '440.0000', '440.0000', '5.0000', NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '335.5930');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1367, NULL, NULL, 786, 'G7-W-WLB-0043', 'G7 Ladies Hand Bag', NULL, '372.8814', '4.0000', 1, '67.1186', 5, '18%', NULL, NULL, NULL, '1760.0000', '4.0000', '2019-09-04', 'received', '440.0000', '440.0000', '4.0000', NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '268.4744');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1368, NULL, 6, 401, 'G7-M-SLP-0006-01', 'G7 Slipper-black=11', NULL, '550.0000', '3.0000', 2, '297.0000', 5, '18%', NULL, NULL, NULL, '1947.0000', '3.0000', '2019-09-14', 'received', '649.0000', '649.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '297.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1369, NULL, 6, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown=8', NULL, '550.0000', '4.0000', 2, '396.0000', 5, '18%', NULL, NULL, NULL, '2596.0000', '4.0000', '2019-09-14', 'received', '649.0000', '649.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '396.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1370, NULL, 6, 403, 'G7-M-SLP-0007-01', 'G7 Slipper-black=07', NULL, '550.0000', '3.0000', 2, '297.0000', 5, '18%', NULL, NULL, NULL, '1947.0000', '3.0000', '2019-09-14', 'received', '649.0000', '649.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '297.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1371, NULL, 6, 404, 'G7-M-SLP-0007-03', 'G7 Slipper-brown=9', NULL, '550.0000', '4.0000', 2, '396.0000', 5, '18%', NULL, NULL, NULL, '2596.0000', '4.0000', '2019-09-14', 'received', '649.0000', '649.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '396.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1372, NULL, NULL, 845, 'LP-1', 'LEATHER STRIPES', NULL, '120.0000', '864.0000', 1, '18662.4000', 5, '18.0000%', NULL, NULL, NULL, '122342.4000', '864.0000', '2019-09-16', 'received', '141.6000', '141.6000', '864.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1373, 28, NULL, 845, 'LP-1', 'LEATHER STRIPES', NULL, '120.0000', '864.0000', 1, '18662.4000', 5, '18%', '0', '0.0000', NULL, '122342.4000', '0.0000', '2019-08-16', 'received', '141.6000', '120.0000', '864.0000', NULL, NULL, 2, 'PCS', '864.0000', '18%', '0.0000', '0.0000', '18662.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1374, 28, NULL, 846, 'LB-1', 'LEATHER BELT', NULL, '105.7500', '803.0000', 1, '15285.1050', 5, '18%', '0', '0.0000', NULL, '100202.3600', '803.0000', '2019-08-16', 'received', '124.7900', '105.7500', '803.0000', NULL, NULL, 2, 'PCS', '803.0000', '18%', '0.0000', '0.0000', '15285.1050');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1376, NULL, NULL, 847, 'G7-M-SB-000010', 'G7 Side Bag-BLACK', NULL, '338.9831', '2.0000', 1, '122.0339', 5, '18.0000%', NULL, NULL, NULL, '800.0000', '2.0000', '2019-09-16', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1377, NULL, NULL, 848, 'G7-M-SB-000011', 'G7 Side Bag-BROWN', NULL, '635.5932', '2.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '2.0000', '2019-09-16', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1378, NULL, NULL, 848, 'G7-M-SB-000011', 'G7 Side Bag-BROWN', NULL, '635.5932', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-16', 'received', '750.0000', '750.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1379, NULL, 7, 802, 'G7-W-WLB-0053', 'G7 Ladies  hand Bag', NULL, '305.0847', '2.0000', 2, '109.8306', 5, '18%', NULL, NULL, NULL, '720.0000', '2.0000', '2019-09-19', 'received', '360.0000', '360.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '109.8306');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1380, 30, NULL, 845, 'LP-1', 'LEATHER STRIPES', NULL, '120.0000', '-690.0000', 1, '-14904.0000', 5, '18%', '0', '0.0000', NULL, '-97704.0000', '-690.0000', '0000-00-00', 'received', '141.6000', '120.0000', NULL, NULL, 1373, 2, 'PCS', '-690.0000', '18%', '0.0000', '0.0000', '-14904.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1383, 33, NULL, 822, 'ls-patti-0001', 'LS Leather Stripes', NULL, '39.0000', '1062.0000', 1, '7455.2400', 5, '18%', '0', '0.0000', NULL, '48873.2400', '1062.0000', '2019-08-13', 'received', '46.0200', '39.0000', '1062.0000', NULL, NULL, 2, 'PCS', '1062.0000', '18%', '0.0000', '0.0000', '7455.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1384, 34, NULL, 822, 'ls-patti-0001', 'LS Leather Stripes', NULL, '39.0000', '-1038.0000', 1, '-7286.7600', 5, '18%', '0', '0.0000', NULL, '-47768.7600', '-1038.0000', '0000-00-00', 'received', '46.0200', '39.0000', NULL, NULL, 1383, 2, 'PCS', '-1038.0000', '18%', '0.0000', '0.0000', '-7286.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1385, NULL, NULL, 849, 'JI-M-IEL-0017', 'JI Italian Limited Edition ', NULL, '423.7288', '2.0000', 1, '152.5424', 5, '18.0000%', NULL, NULL, NULL, '1000.0000', '2.0000', '2019-09-21', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1386, NULL, NULL, 850, 'JI-M-IEL-0018', 'JI Italian Limited Edition -ECO', NULL, '296.6102', '2.0000', 1, '106.7797', 5, '18.0000%', NULL, NULL, NULL, '700.0000', '2.0000', '2019-09-21', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1387, NULL, NULL, 850, 'JI-M-IEL-0018', 'JI Italian Limited Edition -ECO', NULL, '296.6102', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-21', 'received', '350.0000', '350.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1388, NULL, NULL, 851, 'G7-W-WLB-0076', 'G7 Ladies hend Bag-066', NULL, '254.2373', '2.0000', 1, '91.5254', 5, '18.0000%', NULL, NULL, NULL, '600.0000', '2.0000', '2019-09-21', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1389, NULL, NULL, 851, 'G7-W-WLB-0076', 'G7 Ladies hend Bag-066', NULL, '254.2373', '2.0000', 2, '91.5254', 5, '18.0000%', NULL, NULL, NULL, '600.0000', '2.0000', '2019-09-21', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1390, NULL, NULL, 852, 'JI-M-IBLT-0134-48', 'JI Italian L Belt--078', NULL, '330.5085', '10.0000', 1, '594.9153', 5, '18.0000%', NULL, NULL, NULL, '3900.0000', '5.0000', '2019-09-21', 'received', '390.0000', '390.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1391, NULL, NULL, 853, 'JI-M-CBLT-0003', 'JI Ceramic Belt - 0.180', NULL, '762.7119', '6.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '6.0000', '2019-09-21', 'received', '900.0000', '900.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1392, NULL, NULL, 854, 'JI-M-CBLT-0004', 'JI Ceramic Belt - 0.180', NULL, '762.7119', '6.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '9.0000', '2019-09-21', 'received', '900.0000', '900.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1393, NULL, NULL, 854, 'JI-M-CBLT-0004', 'JI Ceramic Belt - 0.180', NULL, '762.7119', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-21', 'received', '900.0000', '900.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1394, NULL, NULL, 855, 'JI-M-CBLT-0005', 'JI Ceramic Belt ', NULL, '762.7119', '6.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '5.0000', '2019-09-21', 'received', '900.0000', '900.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1395, NULL, NULL, 855, 'JI-M-CBLT-0005', 'JI Ceramic Belt ', NULL, '762.7119', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-21', 'received', '900.0000', '900.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1396, NULL, NULL, 856, 'JI-M-CBLT-0006', 'JI Ceramic Belt ', NULL, '762.7119', '6.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '3.0000', '2019-09-21', 'received', '900.0000', '900.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1397, NULL, NULL, 856, 'JI-M-CBLT-0006', 'JI Ceramic Belt ', NULL, '762.7119', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-21', 'received', '900.0000', '900.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1398, NULL, NULL, 857, 'JI-M-CBLT-0007', 'JI Ceramic Belt ', NULL, '762.7119', '6.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '3.0000', '2019-09-21', 'received', '900.0000', '900.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1399, NULL, NULL, 857, 'JI-M-CBLT-0007', 'JI Ceramic Belt ', NULL, '762.7119', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-21', 'received', '900.0000', '900.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1400, NULL, NULL, 858, 'JI-M-CBLT-0008', 'JI Ceramic  kanta Belt ', NULL, '677.9661', '6.0000', 1, '732.2034', 5, '18.0000%', NULL, NULL, NULL, '4800.0000', '3.0000', '2019-09-21', 'received', '800.0000', '800.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1401, NULL, NULL, 858, 'JI-M-CBLT-0008', 'JI Ceramic  kanta Belt ', NULL, '677.9661', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-21', 'received', '800.0000', '800.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1402, NULL, NULL, 859, 'JI-M-CBLT-0010', 'JI Ceramic  kanta Belt', NULL, '677.9661', '6.0000', 1, '732.2034', 5, '18.0000%', NULL, NULL, NULL, '4800.0000', '3.0000', '2019-09-21', 'received', '800.0000', '800.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1403, NULL, NULL, 859, 'JI-M-CBLT-0010', 'JI Ceramic  kanta Belt', NULL, '677.9661', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-21', 'received', '800.0000', '800.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1404, NULL, NULL, 860, 'JI-M-CBLT-0011', 'JI Ceramic Belt ', NULL, '762.7119', '6.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '3.0000', '2019-09-21', 'received', '900.0000', '900.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1405, NULL, NULL, 860, 'JI-M-CBLT-0011', 'JI Ceramic Belt ', NULL, '762.7119', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-21', 'received', '900.0000', '900.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1406, NULL, 8, 802, 'G7-W-WLB-0053', 'G7 Ladies  hand Bag', NULL, '372.8814', '10.0000', 2, '671.1860', 5, '18%', NULL, NULL, NULL, '4400.0000', '10.0000', '2019-09-23', 'received', '440.0000', '440.0000', NULL, NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '671.1860');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1407, NULL, 9, 852, 'JI-M-IBLT-0134-48', 'JI Italian L Belt--078', NULL, '330.5085', '5.0000', 2, '297.4575', 5, '18%', NULL, NULL, NULL, '1950.0000', '5.0000', '2019-09-23', 'received', '390.0000', '390.0000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '297.4575');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1408, NULL, 9, 854, 'JI-M-CBLT-0004', 'JI Ceramic Belt - 0.180', NULL, '762.7119', '3.0000', 2, '411.8643', 5, '18%', NULL, NULL, NULL, '2700.0000', '3.0000', '2019-09-23', 'received', '900.0000', '900.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '411.8643');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1409, NULL, 9, 856, 'JI-M-CBLT-0006', 'JI Ceramic Belt ', NULL, '762.7119', '3.0000', 2, '411.8643', 5, '18%', NULL, NULL, NULL, '2700.0000', '3.0000', '2019-09-23', 'received', '900.0000', '900.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '411.8643');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1410, NULL, 9, 857, 'JI-M-CBLT-0007', 'JI Ceramic Belt ', NULL, '762.7119', '3.0000', 2, '411.8643', 5, '18%', NULL, NULL, NULL, '2700.0000', '3.0000', '2019-09-23', 'received', '900.0000', '900.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '411.8643');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1411, NULL, 9, 860, 'JI-M-CBLT-0011', 'JI Ceramic Belt ', NULL, '762.7119', '3.0000', 2, '411.8643', 5, '18%', NULL, NULL, NULL, '2700.0000', '3.0000', '2019-09-23', 'received', '900.0000', '900.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '411.8643');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1412, NULL, 9, 858, 'JI-M-CBLT-0008', 'JI Ceramic  kanta Belt ', NULL, '677.9661', '3.0000', 2, '366.1017', 5, '18%', NULL, NULL, NULL, '2400.0000', '3.0000', '2019-09-23', 'received', '800.0000', '800.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '366.1017');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1413, NULL, 9, 859, 'JI-M-CBLT-0010', 'JI Ceramic  kanta Belt', NULL, '677.9661', '3.0000', 2, '366.1017', 5, '18%', NULL, NULL, NULL, '2400.0000', '3.0000', '2019-09-23', 'received', '800.0000', '800.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '366.1017');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1414, NULL, 9, 855, 'JI-M-CBLT-0005', 'JI Ceramic Belt ', NULL, '762.7119', '1.0000', 2, '137.2881', 5, '18%', NULL, NULL, NULL, '900.0000', '1.0000', '2019-09-23', 'received', '900.0000', '900.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '137.2881');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1415, NULL, 9, 833, 'G7-W-WLB-0071', 'G7 Ladies Hend Bag', NULL, '274.5763', '1.0000', 2, '49.4237', 5, '18%', NULL, NULL, NULL, '324.0000', '1.0000', '2019-09-23', 'received', '324.0000', '324.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '49.4237');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1416, NULL, 9, 832, 'G7-W-WLB-0070', 'G7 Ladies side Bag', NULL, '114.4068', '14.0000', 2, '288.3048', 5, '18%', NULL, NULL, NULL, '1890.0000', '14.0000', '2019-09-23', 'received', '135.0000', '135.0000', NULL, NULL, NULL, 2, 'PCS', '14.0000', '18%', '0.0000', '0.0000', '288.3048');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1417, NULL, 9, 830, 'G7-W-WC-0018', 'G7 Calch', NULL, '110.5932', '5.0000', 2, '99.5340', 5, '18%', NULL, NULL, NULL, '652.5000', '5.0000', '2019-09-23', 'received', '130.5000', '130.5000', NULL, NULL, NULL, 2, 'PCS', '5.0000', '18%', '0.0000', '0.0000', '99.5340');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1418, NULL, NULL, 861, 'JI-M-ILB-0032', 'JI Indian Leather Belt', NULL, '127.1186', '10.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '4.0000', '2019-09-24', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1419, NULL, NULL, 862, 'JI-M-IBLT-0135', 'JI Italian L Belt', NULL, '190.6780', '10.0000', 1, '343.2203', 5, '18.0000%', NULL, NULL, NULL, '2250.0000', '7.0000', '2019-09-24', 'received', '225.0000', '225.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1420, NULL, NULL, 862, 'JI-M-IBLT-0135', 'JI Italian L Belt', NULL, '190.6780', '5.0000', 2, '171.6102', 5, '18.0000%', NULL, NULL, NULL, '1125.0000', '5.0000', '2019-09-24', 'received', '225.0000', '225.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1421, NULL, NULL, 863, 'JI-M-IBLT-0136', 'JI Italian L Belt', NULL, '245.7627', '10.0000', 1, '442.3729', 5, '18.0000%', NULL, NULL, NULL, '2900.0000', '4.0000', '2019-09-24', 'received', '290.0000', '290.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1422, NULL, NULL, 863, 'JI-M-IBLT-0136', 'JI Italian L Belt', NULL, '245.7627', '5.0000', 2, '221.1864', 5, '18.0000%', NULL, NULL, NULL, '1450.0000', '5.0000', '2019-09-24', 'received', '290.0000', '290.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1423, NULL, NULL, 864, 'JI-M-IBLT-0137', 'JI Italian L Belt', NULL, '190.6780', '30.0000', 1, '1029.6610', 5, '18.0000%', NULL, NULL, NULL, '6750.0000', '9.0000', '2019-09-24', 'received', '225.0000', '225.0000', '30.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1424, NULL, NULL, 864, 'JI-M-IBLT-0137', 'JI Italian L Belt', NULL, '190.6780', '5.0000', 2, '171.6102', 5, '18.0000%', NULL, NULL, NULL, '1125.0000', '5.0000', '2019-09-24', 'received', '225.0000', '225.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1425, NULL, 10, 861, 'JI-M-ILB-0032', 'JI Indian Leather Belt', NULL, '127.1186', '6.0000', 2, '137.2884', 5, '18%', NULL, NULL, NULL, '900.0000', '6.0000', '2019-09-24', 'received', '150.0000', '150.0000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '137.2884');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1426, NULL, 10, 292, 'JI-M-CBLT-0002', 'JI Ceramic Belt - 40mm', NULL, '805.0847', '12.0000', 2, '1738.9836', 5, '18%', NULL, NULL, NULL, '11400.0000', '12.0000', '2019-09-24', 'received', '950.0000', '950.0000', NULL, NULL, NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '1738.9836');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1427, NULL, 10, 862, 'JI-M-IBLT-0135', 'JI Italian L Belt', NULL, '190.6780', '3.0000', 2, '102.9660', 5, '18%', NULL, NULL, NULL, '675.0000', '3.0000', '2019-09-24', 'received', '225.0000', '225.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '102.9660');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1428, NULL, 10, 863, 'JI-M-IBLT-0136', 'JI Italian L Belt', NULL, '245.7627', '6.0000', 2, '265.4238', 5, '18%', NULL, NULL, NULL, '1740.0000', '6.0000', '2019-09-24', 'received', '290.0000', '290.0000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '265.4238');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1429, NULL, 10, 864, 'JI-M-IBLT-0137', 'JI Italian L Belt', NULL, '190.6780', '21.0000', 2, '720.7620', 5, '18%', NULL, NULL, NULL, '4725.0000', '21.0000', '2019-09-24', 'received', '225.0000', '225.0000', NULL, NULL, NULL, 2, 'PCS', '21.0000', '18%', '0.0000', '0.0000', '720.7620');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1430, NULL, 10, 50, 'JI-M-BBI-0006', 'JI Ind Brass Bkl', 155, '423.7288', '6.0000', 2, '457.6272', 5, '18%', NULL, NULL, NULL, '3000.0000', '6.0000', '2019-09-24', 'received', '500.0000', '500.0000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '457.6272');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1431, NULL, NULL, 865, 'JI-M-IBLT-0138', 'JI Italian L Belt', NULL, '423.7288', '3.0000', 1, '228.8136', 5, '18.0000%', NULL, NULL, NULL, '1500.0000', '3.0000', '2019-09-25', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1432, NULL, NULL, 865, 'JI-M-IBLT-0138', 'JI Italian L Belt', NULL, '423.7288', '26.0000', 2, '1983.0508', 5, '18.0000%', NULL, NULL, NULL, '13000.0000', '26.0000', '2019-09-25', 'received', '500.0000', '500.0000', '26.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1433, NULL, NULL, 866, 'JI-M-IBLT-0139', 'JI Italian L Belt', NULL, '211.8644', '3.0000', 1, '114.4068', 5, '18.0000%', NULL, NULL, NULL, '750.0000', '3.0000', '2019-09-25', 'received', '250.0000', '250.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1434, NULL, NULL, 866, 'JI-M-IBLT-0139', 'JI Italian L Belt', NULL, '211.8644', '26.0000', 2, '991.5254', 5, '18.0000%', NULL, NULL, NULL, '6500.0000', '26.0000', '2019-09-25', 'received', '250.0000', '250.0000', '26.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1435, NULL, NULL, 867, 'G7-M-LWLT-0063', 'G7 Leather Wallet', NULL, '84.7458', '10.0000', 1, '152.5424', 5, '18.0000%', NULL, NULL, NULL, '1000.0000', '0.0000', '2019-09-30', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1436, NULL, NULL, 868, 'G7-M-LWLT-0064', 'G7 Leather Wallet', NULL, '84.7458', '10.0000', 1, '152.5424', 5, '18.0000%', NULL, NULL, NULL, '1000.0000', '0.0000', '2019-09-30', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1437, NULL, NULL, 868, 'G7-M-LWLT-0064', 'G7 Leather Wallet', NULL, '84.7458', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-30', 'received', '100.0000', '100.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1438, NULL, NULL, 869, 'G7-W-WMB-0002', 'G7 Mobile Bag', NULL, '211.8644', '10.0000', 1, '381.3559', 5, '18.0000%', NULL, NULL, NULL, '2500.0000', '4.0000', '2019-09-30', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1439, NULL, NULL, 870, 'G7-MC-0001', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 1, '91.5254', 5, '18.0000%', NULL, NULL, NULL, '600.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1440, NULL, NULL, 871, 'G7-MC-0002', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 1, '91.5254', 5, '18.0000%', NULL, NULL, NULL, '600.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1441, NULL, NULL, 871, 'G7-MC-0002', 'G7 MONY CLIP', NULL, '127.1186', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1442, NULL, NULL, 872, 'G7-MC-0003', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 1, '91.5254', 5, '18.0000%', NULL, NULL, NULL, '600.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1443, NULL, NULL, 872, 'G7-MC-0003', 'G7 MONY CLIP', NULL, '127.1186', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1444, NULL, NULL, 873, 'G7-MC-0004', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 1, '91.5254', 5, '18.0000%', NULL, NULL, NULL, '600.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1445, NULL, NULL, 873, 'G7-MC-0004', 'G7 MONY CLIP', NULL, '127.1186', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1446, NULL, NULL, 874, 'G7-MC-0005', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 1, '91.5254', 5, '18.0000%', NULL, NULL, NULL, '600.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1447, NULL, NULL, 874, 'G7-MC-0005', 'G7 MONY CLIP', NULL, '127.1186', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-09-30', 'received', '150.0000', '150.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1448, NULL, 11, 870, 'G7-MC-0001', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 2, '91.5256', 5, '18%', NULL, NULL, NULL, '600.0000', '4.0000', '2019-09-30', 'received', '150.0000', '150.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '91.5256');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1449, NULL, 11, 871, 'G7-MC-0002', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 2, '91.5256', 5, '18%', NULL, NULL, NULL, '600.0000', '4.0000', '2019-09-30', 'received', '150.0000', '150.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '91.5256');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1450, NULL, 11, 872, 'G7-MC-0003', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 2, '91.5256', 5, '18%', NULL, NULL, NULL, '600.0000', '4.0000', '2019-09-30', 'received', '150.0000', '150.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '91.5256');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1451, NULL, 11, 873, 'G7-MC-0004', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 2, '91.5256', 5, '18%', NULL, NULL, NULL, '600.0000', '4.0000', '2019-09-30', 'received', '150.0000', '150.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '91.5256');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1452, NULL, 11, 874, 'G7-MC-0005', 'G7 MONY CLIP', NULL, '127.1186', '4.0000', 2, '91.5256', 5, '18%', NULL, NULL, NULL, '600.0000', '4.0000', '2019-09-30', 'received', '150.0000', '150.0000', NULL, NULL, NULL, 2, 'PCS', '4.0000', '18%', '0.0000', '0.0000', '91.5256');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1453, NULL, 11, 867, 'G7-M-LWLT-0063', 'G7 Leather Wallet', NULL, '84.7458', '10.0000', 2, '152.5420', 5, '18%', NULL, NULL, NULL, '1000.0000', '10.0000', '2019-09-30', 'received', '100.0000', '100.0000', NULL, NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '152.5420');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1454, NULL, 11, 868, 'G7-M-LWLT-0064', 'G7 Leather Wallet', NULL, '84.7458', '10.0000', 2, '152.5420', 5, '18%', NULL, NULL, NULL, '1000.0000', '10.0000', '2019-09-30', 'received', '100.0000', '100.0000', NULL, NULL, NULL, 2, 'PCS', '10.0000', '18%', '0.0000', '0.0000', '152.5420');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1455, NULL, 11, 869, 'G7-W-WMB-0002', 'G7 Mobile Bag', NULL, '211.8644', '6.0000', 2, '228.8136', 5, '18%', NULL, NULL, NULL, '1500.0000', '6.0000', '2019-09-30', 'received', '250.0000', '250.0000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '228.8136');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1456, NULL, NULL, 875, 'BU-3', 'Buckle-3', NULL, '10.0000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-01', 'received', '11.8000', '11.8000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1457, NULL, NULL, 876, 'Ji-bkl-0002', 'GENTS BELT', NULL, '42.5000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-01', 'received', '50.1500', '50.1500', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1458, 35, NULL, 875, 'BU-3', 'Buckle-3', NULL, '10.0000', '9600.0000', 1, '17280.0000', 5, '18%', '0', '0.0000', NULL, '113280.0000', '6125.0000', '2019-10-01', 'received', '11.8000', '10.0000', '9600.0000', NULL, NULL, 2, 'PCS', '9600.0000', '18%', '0.0000', '0.0000', '17280.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1459, 35, NULL, 876, 'Ji-bkl-0002', 'GENTS BELT', NULL, '42.5000', '5484.0000', 1, '41952.6000', 5, '18%', '0', '0.0000', NULL, '275022.6000', '5484.0000', '2019-10-01', 'received', '50.1500', '42.5000', '5484.0000', NULL, NULL, 2, 'PCS', '5484.0000', '18%', '0.0000', '0.0000', '41952.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1460, 35, NULL, 877, 'LWLT-1', 'GENTS WALLET', NULL, '12.0000', '768.0000', 1, '1658.8800', 5, '18%', '0', '0.0000', NULL, '10874.8800', '718.0000', '2019-10-01', 'received', '14.1600', '12.0000', '768.0000', NULL, NULL, 2, 'PCS', '768.0000', '18%', '0.0000', '0.0000', '1658.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1461, 35, NULL, 878, 'EPB-1', 'EMPTY PACKING BOX(FOR WALLET)', NULL, '12.0000', '372.0000', 1, '803.5200', 5, '18%', '0', '0.0000', NULL, '5267.5200', '372.0000', '2019-10-01', 'received', '14.1600', '12.0000', '372.0000', NULL, NULL, 2, 'PCS', '372.0000', '18%', '0.0000', '0.0000', '803.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1462, 35, NULL, 879, 'DS-1', 'DISPLAY STAND ', NULL, '80.0000', '50.0000', 1, '720.0000', 5, '18%', '0', '0.0000', NULL, '4720.0000', '50.0000', '2019-10-01', 'received', '94.4000', '80.0000', '50.0000', NULL, NULL, 2, 'PCS', '50.0000', '18%', '0.0000', '0.0000', '720.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1463, 35, NULL, 880, 'DS-2', 'DISPLAY STAND ', NULL, '40.0000', '120.0000', 1, '864.0000', 5, '18%', '0', '0.0000', NULL, '5664.0000', '120.0000', '2019-10-01', 'received', '47.2000', '40.0000', '120.0000', NULL, NULL, 2, 'PCS', '120.0000', '18%', '0.0000', '0.0000', '864.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1464, NULL, NULL, 881, 'JI-M-IBLT-0140', 'JI Italian L Belt', NULL, '211.8644', '24.0000', 1, '915.2542', 5, '18.0000%', NULL, NULL, NULL, '6000.0000', '0.0000', '2019-10-01', 'received', '250.0000', '250.0000', '24.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1465, NULL, NULL, 881, 'JI-M-IBLT-0140', 'JI Italian L Belt', NULL, '211.8644', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-01', 'received', '250.0000', '250.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1466, NULL, NULL, 882, 'JI-M-IBLT-0141', 'JI Italian L Belt', NULL, '211.8644', '12.0000', 1, '457.6271', 5, '18.0000%', NULL, NULL, NULL, '3000.0000', '0.0000', '2019-10-01', 'received', '250.0000', '250.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1467, NULL, NULL, 882, 'JI-M-IBLT-0141', 'JI Italian L Belt', NULL, '211.8644', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-01', 'received', '250.0000', '250.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1468, NULL, 12, 881, 'JI-M-IBLT-0140', 'JI Italian L Belt', NULL, '211.8644', '24.0000', 2, '915.2544', 5, '18%', NULL, NULL, NULL, '6000.0000', '24.0000', '2019-10-01', 'received', '250.0000', '250.0000', NULL, NULL, NULL, 2, 'PCS', '24.0000', '18%', '0.0000', '0.0000', '915.2544');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1469, NULL, 12, 882, 'JI-M-IBLT-0141', 'JI Italian L Belt', NULL, '211.8644', '12.0000', 2, '457.6272', 5, '18%', NULL, NULL, NULL, '3000.0000', '12.0000', '2019-10-01', 'received', '250.0000', '250.0000', NULL, NULL, NULL, 2, 'PCS', '12.0000', '18%', '0.0000', '0.0000', '457.6272');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1472, NULL, NULL, 883, 'JI-M-IBLT-0142', 'JI Italian L Belt-30%', NULL, '254.2373', '6.0000', 1, '274.5763', 5, '18.0000%', NULL, NULL, NULL, '1800.0000', '6.0000', '2019-10-08', 'received', '300.0000', '300.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1473, NULL, NULL, 883, 'JI-M-IBLT-0142', 'JI Italian L Belt-30%', NULL, '254.2373', '12.0000', 2, '549.1525', 5, '18.0000%', NULL, NULL, NULL, '3600.0000', '12.0000', '2019-10-08', 'received', '300.0000', '300.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1474, NULL, NULL, 884, 'JI-M-IBLT-0143', 'JI Italian L Belt-20%', NULL, '254.2373', '18.0000', 1, '823.7288', 5, '18.0000%', NULL, NULL, NULL, '5400.0000', '18.0000', '2019-10-08', 'received', '300.0000', '300.0000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1475, NULL, NULL, 884, 'JI-M-IBLT-0143', 'JI Italian L Belt-20%', NULL, '254.2373', '12.0000', 2, '549.1525', 5, '18.0000%', NULL, NULL, NULL, '3600.0000', '12.0000', '2019-10-08', 'received', '300.0000', '300.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1476, NULL, NULL, 885, 'JI-M-BBI-0014', 'JI Ind Brass Bkl-30%', NULL, '1228.8136', '15.0000', 1, '3317.7966', 5, '18.0000%', NULL, NULL, NULL, '21750.0000', '15.0000', '2019-10-08', 'received', '1450.0000', '1450.0000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1477, NULL, NULL, 885, 'JI-M-BBI-0014', 'JI Ind Brass Bkl-30%', NULL, '1228.8136', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-08', 'received', '1450.0000', '1450.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1478, NULL, NULL, 886, 'JI-M-ILB-0033', 'JI Indian Leather Belt-20%', NULL, '533.8983', '15.0000', 1, '1441.5254', 5, '18.0000%', NULL, NULL, NULL, '9450.0000', '15.0000', '2019-10-08', 'received', '630.0000', '630.0000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1479, NULL, NULL, 887, 'JI-M-ISM-0005', 'JI Italian Steel Bkl-KRT-40%', NULL, '1406.7797', '12.0000', 1, '3038.6441', 5, '18.0000%', NULL, NULL, NULL, '19920.0000', '12.0000', '2019-10-08', 'received', '1660.0000', '1660.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1480, NULL, NULL, 888, 'JI-M-ISM-0006', 'JI Italian Steel Bkl-KRT-40%', NULL, '1694.0678', '30.0000', 1, '9147.9661', 5, '18.0000%', NULL, NULL, NULL, '59970.0000', '30.0000', '2019-10-08', 'received', '1999.0000', '1999.0000', '30.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1481, NULL, NULL, 888, 'JI-M-ISM-0006', 'JI Italian Steel Bkl-KRT-40%', NULL, '1694.0678', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-08', 'received', '1999.0000', '1999.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1482, NULL, NULL, 889, 'JI-M-CWLT-0006', 'JI Chain Wallet(Esiposs)-20%', NULL, '1008.4746', '10.0000', 1, '1815.2542', 5, '18.0000%', NULL, NULL, NULL, '11900.0000', '10.0000', '2019-10-08', 'received', '1190.0000', '1190.0000', '10.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1483, NULL, NULL, 889, 'JI-M-CWLT-0006', 'JI Chain Wallet(Esiposs)-20%', NULL, '1008.4746', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-08', 'received', '1190.0000', '1190.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1484, NULL, NULL, 890, 'JI-M-ISM-0007', 'JI Italian Steel Bkl-KRT', NULL, '1601.6949', '30.0000', 1, '8649.1525', 5, '18.0000%', NULL, NULL, NULL, '56700.0000', '30.0000', '2019-10-11', 'received', '1890.0000', '1890.0000', '30.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1485, NULL, NULL, 890, 'JI-M-ISM-0007', 'JI Italian Steel Bkl-KRT', NULL, '1601.6949', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-11', 'received', '1890.0000', '1890.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1492, NULL, 13, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown=8', NULL, '650.0000', '1.0000', 2, '117.0000', 5, '18%', NULL, NULL, NULL, '767.0000', '1.0000', '2019-10-17', 'received', '767.0000', '767.0000', NULL, NULL, NULL, 2, 'PCS', '1.0000', '18%', '0.0000', '0.0000', '117.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1493, NULL, 13, 401, 'G7-M-SLP-0006-01', 'G7 Slipper-black=11', NULL, '650.0000', '6.0000', 2, '702.0000', 5, '18%', NULL, NULL, NULL, '4602.0000', '6.0000', '2019-10-17', 'received', '767.0000', '767.0000', NULL, NULL, NULL, 2, 'PCS', '6.0000', '18%', '0.0000', '0.0000', '702.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1497, NULL, 14, 403, 'G7-M-SLP-0007-01', 'G7 Slipper-black=07', NULL, '650.0000', '3.0000', 2, '351.0000', 5, '18%', NULL, NULL, NULL, '2301.0000', '3.0000', '2019-10-17', 'received', '767.0000', '767.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '351.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1498, NULL, 14, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown=8', NULL, '650.0000', '2.0000', 2, '234.0000', 5, '18%', NULL, NULL, NULL, '1534.0000', '2.0000', '2019-10-17', 'received', '767.0000', '767.0000', NULL, NULL, NULL, 2, 'PCS', '2.0000', '18%', '0.0000', '0.0000', '234.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1499, NULL, 14, 401, 'G7-M-SLP-0006-01', 'G7 Slipper-black=11', NULL, '650.0000', '3.0000', 2, '351.0000', 5, '18%', NULL, NULL, NULL, '2301.0000', '3.0000', '2019-10-17', 'received', '767.0000', '767.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '351.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1500, NULL, NULL, 891, 'JI-1', 'LEDIES BEG', NULL, '250.0000', '18.0000', 1, '45.0000', 5, '18%', NULL, NULL, NULL, '5310.0000', '0.0000', '2019-10-18', 'received', '295.0000', '250.0000', '18.0000', NULL, NULL, 2, 'PCS', '18.0000', '18%', '0.0000', '0.0000', '810.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1501, NULL, NULL, 892, 'JI-2', 'CHAIN WALLET', NULL, '650.0000', '6.0000', 1, '702.0000', 5, '18.0000%', NULL, NULL, NULL, '4602.0000', '0.0000', '2019-10-18', 'received', '767.0000', '767.0000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1502, NULL, NULL, 892, 'JI-2', 'CHAIN WALLET', NULL, '650.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '767.0000', '767.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1503, NULL, NULL, 893, 'JI-3', 'BEG-1688', NULL, '290.0000', '12.0000', 1, '626.4000', 5, '18.0000%', NULL, NULL, NULL, '4106.4000', '0.0000', '2019-10-18', 'received', '342.2000', '342.2000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1504, NULL, NULL, 893, 'JI-3', 'BEG-1688', NULL, '290.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '342.2000', '342.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1505, NULL, NULL, 894, 'JI-4', 'BEG-19101', NULL, '390.0000', '12.0000', 1, '842.4000', 5, '18.0000%', NULL, NULL, NULL, '5522.4000', '0.0000', '2019-10-18', 'received', '460.2000', '460.2000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1506, NULL, NULL, 894, 'JI-4', 'BEG-19101', NULL, '390.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '460.2000', '460.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1507, NULL, NULL, 895, 'JI-5', 'BEG-7155', NULL, '300.0000', '12.0000', 1, '648.0000', 5, '18.0000%', NULL, NULL, NULL, '4248.0000', '0.0000', '2019-10-18', 'received', '354.0000', '354.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1508, NULL, NULL, 895, 'JI-5', 'BEG-7155', NULL, '300.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '354.0000', '354.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1509, NULL, NULL, 896, 'JI-6', 'BEG-939', NULL, '390.0000', '6.0000', 1, '421.2000', 5, '18.0000%', NULL, NULL, NULL, '2761.2000', '0.0000', '2019-10-18', 'received', '460.2000', '460.2000', '6.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1510, NULL, NULL, 896, 'JI-6', 'BEG-939', NULL, '390.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '460.2000', '460.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1511, NULL, NULL, 897, 'JI-7', 'Back Pack19063', NULL, '250.0000', '20.0000', 1, '900.0000', 5, '18.0000%', NULL, NULL, NULL, '5900.0000', '0.0000', '2019-10-18', 'received', '295.0000', '295.0000', '20.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1512, NULL, NULL, 897, 'JI-7', 'Back Pack19063', NULL, '250.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '295.0000', '295.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1513, NULL, NULL, 898, 'JI-8', 'BEG-7162', NULL, '80.0000', '15.0000', 1, '216.0000', 5, '18.0000%', NULL, NULL, NULL, '1416.0000', '0.0000', '2019-10-18', 'received', '94.4000', '94.4000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1514, NULL, NULL, 898, 'JI-8', 'BEG-7162', NULL, '80.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '94.4000', '94.4000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1515, NULL, NULL, 899, 'JI-9', 'BEG-18018', NULL, '300.0000', '12.0000', 1, '648.0000', 5, '18.0000%', NULL, NULL, NULL, '4248.0000', '0.0000', '2019-10-18', 'received', '354.0000', '354.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1516, NULL, NULL, 899, 'JI-9', 'BEG-18018', NULL, '300.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '354.0000', '354.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1517, NULL, NULL, 900, 'JI-10', 'BEG-860', NULL, '80.0000', '15.0000', 1, '216.0000', 5, '18.0000%', NULL, NULL, NULL, '1416.0000', '0.0000', '2019-10-18', 'received', '94.4000', '94.4000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1518, NULL, NULL, 900, 'JI-10', 'BEG-860', NULL, '80.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '94.4000', '94.4000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1519, NULL, NULL, 901, 'JI-11', 'BEG-856', NULL, '250.0000', '25.0000', 1, '1125.0000', 5, '18.0000%', NULL, NULL, NULL, '7375.0000', '0.0000', '2019-10-18', 'received', '295.0000', '295.0000', '25.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1520, NULL, NULL, 901, 'JI-11', 'BEG-856', NULL, '250.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '295.0000', '295.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1521, NULL, NULL, 902, 'JI-12', 'BEG-616', NULL, '240.0000', '18.0000', 1, '777.6000', 5, '18.0000%', NULL, NULL, NULL, '5097.6000', '0.0000', '2019-10-18', 'received', '283.2000', '283.2000', '18.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1522, NULL, NULL, 902, 'JI-12', 'BEG-616', NULL, '240.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '283.2000', '283.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1523, NULL, NULL, 903, 'JI-13', 'LEDIES WALLET-19008', NULL, '80.0000', '15.0000', 1, '216.0000', 5, '18.0000%', NULL, NULL, NULL, '1416.0000', '0.0000', '2019-10-18', 'received', '94.4000', '94.4000', '15.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1524, NULL, NULL, 903, 'JI-13', 'LEDIES WALLET-19008', NULL, '80.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '94.4000', '94.4000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1525, NULL, NULL, 904, 'JI-14', 'LEDIES WALLET-16039', NULL, '80.0000', '14.0000', 1, '201.6000', 5, '18.0000%', NULL, NULL, NULL, '1321.6000', '14.0000', '2019-10-18', 'received', '94.4000', '94.4000', '14.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1526, NULL, NULL, 904, 'JI-14', 'LEDIES WALLET-16039', NULL, '80.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '94.4000', '94.4000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1527, NULL, NULL, 905, 'JI-15', 'BACK PACK-686', NULL, '250.0000', '5.0000', 1, '225.0000', 5, '18.0000%', NULL, NULL, NULL, '1475.0000', '0.0000', '2019-10-18', 'received', '295.0000', '295.0000', '5.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1528, NULL, NULL, 905, 'JI-15', 'BACK PACK-686', NULL, '250.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-18', 'received', '295.0000', '295.0000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1529, NULL, NULL, 906, 'JI-M-IBLT-0144', 'JI Italian L Belt', NULL, '466.1017', '3.0000', 1, '251.6949', 5, '18.0000%', NULL, NULL, NULL, '1650.0000', '3.0000', '2019-10-18', 'received', '550.0000', '550.0000', '3.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1530, NULL, NULL, 906, 'JI-M-IBLT-0144', 'JI Italian L Belt', NULL, '466.1017', '12.0000', 2, '1006.7797', 5, '18.0000%', NULL, NULL, NULL, '6600.0000', '12.0000', '2019-10-18', 'received', '550.0000', '550.0000', '12.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1531, NULL, NULL, 907, 'JI-16', 'JI PURSE', NULL, '300.0000', '11.0000', 1, '594.0000', 5, '18.0000%', NULL, NULL, NULL, '3894.0000', '0.0000', '2019-10-21', 'received', '354.0000', '354.0000', '11.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1532, NULL, NULL, 908, 'JI-17', 'JI PURSE', NULL, '290.0000', '11.0000', 1, '574.2000', 5, '18.0000%', NULL, NULL, NULL, '3764.2000', '3.0000', '2019-10-21', 'received', '342.2000', '342.2000', '11.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1533, NULL, NULL, 908, 'JI-17', 'JI PURSE', NULL, '290.0000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-21', 'received', '342.2000', '342.2000', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1537, NULL, NULL, 909, 'LS-M-SLP-007', 'LS Slipper', NULL, '749.3000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-21', 'received', '884.1740', '884.1740', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1538, NULL, NULL, 910, 'LS-008', 'LS Slipper', NULL, '861.4000', '0.0000', 1, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-21', 'received', '1016.4520', '1016.4520', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1539, NULL, NULL, 910, 'LS-008', 'LS Slipper', NULL, '861.4000', '0.0000', 2, '0.0000', 5, '18.0000%', NULL, NULL, NULL, '0.0000', '0.0000', '2019-10-21', 'received', '1016.4520', '1016.4520', '0.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1540, 37, NULL, 909, 'LS-007', 'LS Slipper', NULL, '749.3000', '30.0000', 1, '4046.2200', 5, '18%', '0', '0.0000', NULL, '26525.2200', '9.0000', '2019-10-21', 'received', '884.1700', '749.3000', '30.0000', NULL, NULL, 2, 'PCS', '30.0000', '9%', '2023.1100', '2023.1100', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1541, 37, NULL, 910, 'LS-009', 'LS Slipper', NULL, '861.4000', '32.0000', 1, '4961.6640', 5, '18%', '0', '0.0000', NULL, '32526.4600', '0.0000', '2019-10-21', 'received', '1016.4500', '861.4000', '32.0000', NULL, NULL, 2, 'PCS', '32.0000', '9%', '2480.8320', '2480.8320', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1542, NULL, 15, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown=8', NULL, '550.8475', '3.0000', 2, '297.4575', 5, '18%', NULL, NULL, NULL, '1950.0000', '3.0000', '2019-10-21', 'received', '650.0000', '650.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '297.4575');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1543, NULL, 15, 404, 'G7-M-SLP-0007-03', 'G7 Slipper-brown=9', NULL, '550.8475', '3.0000', 2, '297.4575', 5, '18%', NULL, NULL, NULL, '1950.0000', '3.0000', '2019-10-21', 'received', '650.0000', '650.0000', NULL, NULL, NULL, 2, 'PCS', '3.0000', '18%', '0.0000', '0.0000', '297.4575');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1544, NULL, 15, 620, 'G7-BELT-BOX', 'BELT BOX', NULL, '25.0000', '42.0000', 2, '189.0000', 5, '18%', NULL, NULL, NULL, '1239.0000', '42.0000', '2019-10-21', 'received', '29.5000', '25.0000', NULL, NULL, NULL, 2, 'PCS', '42.0000', '18%', '0.0000', '0.0000', '189.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1545, 38, NULL, 911, 'BU-4', 'BUCKLE(FOR WAIST BELT)', NULL, '5.2500', '7044.0000', 1, '6656.5800', 5, '18%', '0', '0.0000', NULL, '43637.5800', '6379.0000', '2019-10-25', 'received', '6.2000', '5.2500', '7044.0000', NULL, NULL, 2, 'PCS', '7044.0000', '18%', '0.0000', '0.0000', '6656.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1546, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '-108.0000', 1, '114.3000', 5, '18%', NULL, NULL, NULL, '-80924.4000', '-108.0000', '2019-11-03', 'received', '749.3000', '635.0000', '-108.0000', NULL, NULL, 2, 'PCS', '-108.0000', '18%', '0.0000', '0.0000', '-12344.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1547, NULL, NULL, 334, 'LS-M-SLP-004=010', 'LS  Slipper', NULL, '720.0000', '-60.0000', 1, '129.6000', 5, '18%', NULL, NULL, NULL, '-50976.0000', '-11.0000', '2019-11-03', 'received', '849.6000', '720.0000', '-60.0000', NULL, NULL, 2, 'PCS', '-60.0000', '18%', '0.0000', '0.0000', '-7776.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1548, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '-48.0000', 1, '106.7400', 5, '18%', NULL, NULL, NULL, '-33587.5200', '-40.0000', '2019-11-03', 'received', '699.7400', '593.0000', '-48.0000', NULL, NULL, 2, 'PCS', '-48.0000', '18%', '0.0000', '0.0000', '-5123.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1558, 39, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '593.0000', '48.0000', 1, '5123.5200', 5, '18%', '0', '0.0000', NULL, '33587.5200', '48.0000', '2018-11-27', 'received', '699.7400', '593.0000', '48.0000', NULL, NULL, 2, 'PCS', '48.0000', '18%', '0.0000', '0.0000', '5123.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1559, 39, NULL, 334, 'LS-M-SLP-004=010', 'LS  Slipper', NULL, '720.0000', '60.0000', 1, '7776.0000', 5, '18%', '0', '0.0000', NULL, '50976.0000', '60.0000', '2018-11-27', 'received', '849.6000', '720.0000', '60.0000', NULL, NULL, 2, 'PCS', '60.0000', '18%', '0.0000', '0.0000', '7776.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1560, 39, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '635.0000', '108.0000', 1, '12344.4000', 5, '18%', '0', '0.0000', NULL, '80924.4000', '108.0000', '2018-11-27', 'received', '749.3000', '635.0000', '108.0000', NULL, NULL, 2, 'PCS', '108.0000', '18%', '0.0000', '0.0000', '12344.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1561, 40, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '593.0000', '0.0000', 1, '0.0000', 5, '18%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '699.7400', '593.0000', NULL, NULL, 1558, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1562, 40, NULL, 334, 'LS-M-SLP-004=010', 'LS  Slipper', NULL, '720.0000', '0.0000', 1, '0.0000', 5, '18%', '0', '0.0000', NULL, '0.0000', '0.0000', '0000-00-00', 'received', '849.6000', '720.0000', NULL, NULL, 1559, 2, 'PCS', '0.0000', '18%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1563, 40, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '635.0000', '-60.0000', 1, '-6858.0000', 5, '18%', '0', '0.0000', NULL, '-44958.0000', '-60.0000', '0000-00-00', 'received', '749.3000', '635.0000', NULL, NULL, 1560, 2, 'PCS', '-60.0000', '18%', '0.0000', '0.0000', '-6858.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1564, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '32.0000', 1, '114.3000', 5, '18%', NULL, NULL, NULL, '23977.6000', '32.0000', '2019-11-03', 'received', '749.3000', '635.0000', '32.0000', NULL, NULL, 2, 'PCS', '32.0000', '18%', '0.0000', '0.0000', '3657.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1565, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '26.0000', 1, '106.7400', 5, '18%', NULL, NULL, NULL, '18193.2400', '26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '26.0000', NULL, NULL, 2, 'PCS', '26.0000', '18%', '0.0000', '0.0000', '2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1566, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '-32.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '-23977.6000', '-32.0000', '2019-11-03', 'received', '749.3000', '635.0000', '-32.0000', NULL, NULL, 2, 'PCS', '-32.0000', '18%', '0.0000', '0.0000', '-3657.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1567, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '-26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '-18193.2400', '-26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '-26.0000', NULL, NULL, 2, 'PCS', '-26.0000', '18%', '0.0000', '0.0000', '-2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1568, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '40.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '29972.0000', '40.0000', '2019-11-03', 'received', '749.3000', '635.0000', '40.0000', NULL, NULL, 2, 'PCS', '40.0000', '18%', '0.0000', '0.0000', '4572.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1569, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '18193.2400', '26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '26.0000', NULL, NULL, 2, 'PCS', '26.0000', '18%', '0.0000', '0.0000', '2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1570, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '-40.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '-29972.0000', '-40.0000', '2019-11-03', 'received', '749.3000', '635.0000', '-40.0000', NULL, NULL, 2, 'PCS', '-40.0000', '18%', '0.0000', '0.0000', '-4572.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1571, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '-26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '-18193.2400', '-26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '-26.0000', NULL, NULL, 2, 'PCS', '-26.0000', '18%', '0.0000', '0.0000', '-2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1572, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '32.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '23977.6000', '32.0000', '2019-11-03', 'received', '749.3000', '635.0000', '32.0000', NULL, NULL, 2, 'PCS', '32.0000', '18%', '0.0000', '0.0000', '3657.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1573, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '18193.2400', '26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '26.0000', NULL, NULL, 2, 'PCS', '26.0000', '18%', '0.0000', '0.0000', '2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1574, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '-32.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '-23977.6000', '-32.0000', '2019-11-03', 'received', '749.3000', '635.0000', '-32.0000', NULL, NULL, 2, 'PCS', '-32.0000', '18%', '0.0000', '0.0000', '-3657.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1575, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '-26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '-18193.2400', '-26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '-26.0000', NULL, NULL, 2, 'PCS', '-26.0000', '18%', '0.0000', '0.0000', '-2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1576, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '32.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '23977.6000', '32.0000', '2019-11-03', 'received', '749.3000', '635.0000', '32.0000', NULL, NULL, 2, 'PCS', '32.0000', '18%', '0.0000', '0.0000', '3657.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1577, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '18193.2400', '26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '26.0000', NULL, NULL, 2, 'PCS', '26.0000', '18%', '0.0000', '0.0000', '2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1578, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '-32.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '-23977.6000', '-32.0000', '2019-11-03', 'received', '749.3000', '635.0000', '-32.0000', NULL, NULL, 2, 'PCS', '-32.0000', '18%', '0.0000', '0.0000', '-3657.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1579, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '-26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '-18193.2400', '-26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '-26.0000', NULL, NULL, 2, 'PCS', '-26.0000', '18%', '0.0000', '0.0000', '-2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1580, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '32.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '23977.6000', '32.0000', '2019-11-03', 'received', '749.3000', '635.0000', '32.0000', NULL, NULL, 2, 'PCS', '32.0000', '18%', '0.0000', '0.0000', '3657.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1581, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '18193.2400', '26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '26.0000', NULL, NULL, 2, 'PCS', '26.0000', '18%', '0.0000', '0.0000', '2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1582, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '40.0000', 1, '114.3000', 5, '18%', NULL, NULL, NULL, '29972.0000', '40.0000', '2019-11-03', 'received', '749.3000', '635.0000', '40.0000', NULL, NULL, 2, 'PCS', '40.0000', '18%', '0.0000', '0.0000', '4572.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1583, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '-40.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '-29972.0000', '-40.0000', '2019-11-03', 'received', '749.3000', '635.0000', '-40.0000', NULL, NULL, 2, 'PCS', '-40.0000', '18%', '0.0000', '0.0000', '-4572.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1584, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '60.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '44958.0000', '60.0000', '2019-11-03', 'received', '749.3000', '635.0000', '60.0000', NULL, NULL, 2, 'PCS', '60.0000', '18%', '0.0000', '0.0000', '6858.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1585, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '-32.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '-23977.6000', '-32.0000', '2019-11-03', 'received', '749.3000', '635.0000', '-32.0000', NULL, NULL, 2, 'PCS', '-32.0000', '18%', '0.0000', '0.0000', '-3657.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1586, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '-26.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '-18193.2400', '-26.0000', '2019-11-03', 'received', '699.7400', '593.0000', '-26.0000', NULL, NULL, 2, 'PCS', '-26.0000', '18%', '0.0000', '0.0000', '-2775.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1587, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '26.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '19481.8000', '26.0000', '2019-11-03', 'received', '749.3000', '635.0000', '26.0000', NULL, NULL, 2, 'PCS', '26.0000', '18%', '0.0000', '0.0000', '2971.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1588, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '32.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '22391.6800', '32.0000', '2019-11-03', 'received', '699.7400', '593.0000', '32.0000', NULL, NULL, 2, 'PCS', '32.0000', '18%', '0.0000', '0.0000', '3415.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1589, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '-26.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '-19481.8000', '-26.0000', '2019-11-03', 'received', '749.3000', '635.0000', '-26.0000', NULL, NULL, 2, 'PCS', '-26.0000', '18%', '0.0000', '0.0000', '-2971.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1590, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '-32.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '-22391.6800', '-32.0000', '2019-11-03', 'received', '699.7400', '593.0000', '-32.0000', NULL, NULL, 2, 'PCS', '-32.0000', '18%', '0.0000', '0.0000', '-3415.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1591, NULL, NULL, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', NULL, '635.0000', '26.0000', 0, '114.3000', 5, '18%', NULL, NULL, NULL, '19481.8000', '26.0000', '2019-11-03', 'received', '749.3000', '635.0000', '26.0000', NULL, NULL, 2, 'PCS', '26.0000', '18%', '0.0000', '0.0000', '2971.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1592, NULL, NULL, 335, 'LS-M-SLP-005=006', 'LS Slipper', NULL, '593.0000', '32.0000', 0, '106.7400', 5, '18%', NULL, NULL, NULL, '22391.6800', '32.0000', '2019-11-03', 'received', '699.7400', '593.0000', '32.0000', NULL, NULL, 2, 'PCS', '32.0000', '18%', '0.0000', '0.0000', '3415.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1593, NULL, NULL, 912, 'G7-M-SLB-0004', 'G7 Sling Bag', NULL, '84.7458', '26.0000', 1, '396.6102', 5, '18.0000%', NULL, NULL, NULL, '2600.0000', '26.0000', '2019-11-15', 'received', '100.0000', '100.0000', '26.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_purchases
#

DROP TABLE IF EXISTS `sma_purchases`;

CREATE TABLE `sma_purchases` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `reference_no` varchar(55) NOT NULL,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `supplier_id` int(11) NOT NULL,
  `supplier` varchar(55) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `note` varchar(1000) NOT NULL,
  `total` decimal(25,4) DEFAULT NULL,
  `product_discount` decimal(25,4) DEFAULT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `order_discount` decimal(25,4) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT NULL,
  `product_tax` decimal(25,4) DEFAULT NULL,
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT NULL,
  `total_tax` decimal(25,4) DEFAULT '0.0000',
  `shipping` decimal(25,4) DEFAULT '0.0000',
  `grand_total` decimal(25,4) NOT NULL,
  `paid` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `status` varchar(55) DEFAULT '',
  `payment_status` varchar(20) DEFAULT 'pending',
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `payment_term` tinyint(4) DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `return_id` int(11) DEFAULT NULL,
  `surcharge` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `return_purchase_ref` varchar(55) DEFAULT NULL,
  `purchase_id` int(11) DEFAULT NULL,
  `return_purchase_total` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8;

INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (1, 'HAL-04/18-19', '2018-10-24 10:24:00', 9, 'H.A.L Leather', 1, '', '69960.0000', '0.0000', '', '0.0000', '0.0000', '12592.8000', 1, '0.0000', '12592.8000', '0.0000', '82552.8000', '82552.8000', 'received', 'paid', 1, 1, '2018-12-27 07:46:13', NULL, 7, '2018-10-31', NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '12592.8000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (3, '068', '2018-10-25 11:25:00', 10, 'PARMAR Leather Crafts', 1, '&lt;p&gt;ROyal Transport&nbsp; &equals; 390&lt;&sol;p&gt;', '29000.0000', '0.0000', '', '0.0000', '0.0000', '5220.0000', 1, '0.0000', '5220.0000', '390.0000', '34610.0000', '0.0000', 'received', 'pending', 1, 1, '2018-10-25 11:36:38', NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '5220.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (4, '067', '2018-10-25 11:37:00', 10, 'PARMAR Leather Crafts', 1, '&lt;p&gt;RS390&equals;Royal Transport&lt;&sol;p&gt;', '36750.0000', '0.0000', '', '0.0000', '0.0000', '6615.0000', 1, '0.0000', '6615.0000', '390.0000', '43755.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '6615.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (5, 'HAL-07/18-19', '2018-10-26 12:16:00', 9, 'H.A.L Leather', 1, '', '56085.0000', '0.0000', '', '0.0000', '0.0000', '10095.3000', 1, '0.0000', '10095.3000', '0.0000', '66180.3000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '10095.3000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (6, 'HAL-08/18-19', '2018-10-26 12:31:00', 9, 'H.A.L Leather', 1, '', '17900.0000', '0.0000', '', '0.0000', '0.0000', '3222.0000', 1, '0.0000', '3222.0000', '0.0000', '21122.0000', '21122.0000', 'received', 'paid', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '3222.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (7, 'HAL-06/18-19', '2018-10-26 13:01:00', 9, 'H.A.L Leather', 1, '', '37650.0000', '0.0000', '', '0.0000', '0.0000', '6777.0000', 1, '0.0000', '6777.0000', '0.0000', '44427.0000', '44427.0000', 'received', 'paid', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '6777.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (8, 'HAL-09/18-19', '2018-10-26 13:59:00', 9, 'H.A.L Leather', 1, '', '35980.0000', '0.0000', '', '0.0000', '0.0000', '6476.4000', 1, '0.0000', '6476.4000', '0.0000', '42456.4000', '42456.4000', 'received', 'paid', 1, 1, '2018-10-26 17:36:45', NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '6476.4000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (9, 'HAL-10/18-19', '2018-10-26 21:02:00', 9, 'H.A.L Leather', 1, '', '60820.0000', '0.0000', '', '0.0000', '0.0000', '10947.6000', 1, '0.0000', '10947.6000', '0.0000', '71767.6000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 15, '2018-11-11', NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '10947.6000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (10, '069', '2018-10-26 21:21:00', 10, 'PARMAR Leather Crafts', 1, '', '16075.0000', '0.0000', '', '0.0000', '0.0000', '2893.5000', 1, '0.0000', '2893.5000', '0.0000', '18968.5000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 15, '2018-11-11', 12, '0.0000', '069', NULL, '-18968.5000', '0.0000', '0.0000', '2893.5000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (11, 'IT/066/18-19', '2018-10-27 00:01:00', 11, 'Iringal Trendz Pvt. Ltd.', 1, '', '56950.0000', '0.0000', '', '0.0000', '0.0000', '9207.0000', 1, '0.0000', '9207.0000', '0.0000', '66157.0000', '66157.0000', 'received', 'paid', 1, 1, '2018-10-29 06:31:15', NULL, 15, '2018-11-11', 13, '0.0000', 'PR2018/11/0001', NULL, '-21358.0000', '0.0000', '0.0000', '9207.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (12, '069', '2018-10-30 17:00:00', 10, 'PARMAR Leather Crafts', 1, '', '-16075.0000', '0.0000', NULL, '0.0000', '0.0000', '-2893.5000', 1, '0.0000', '-2893.5000', '0.0000', '-18968.5000', '0.0000', 'returned', 'pending', 1, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '069', 10, '0.0000', '0.0000', '0.0000', '-2893.5000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (13, 'IT/066/18-19', '2018-11-03 10:50:00', 11, 'Iringal Trendz Pvt. Ltd.', 1, '', '-18100.0000', '0.0000', NULL, '0.0000', '0.0000', '-3258.0000', 1, '0.0000', '-3258.0000', '0.0000', '-21358.0000', '0.0000', 'ordered', 'pending', 1, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', 'PR2018/11/0001', 11, '0.0000', '0.0000', '0.0000', '-3258.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (14, '11', '2018-11-05 05:17:00', 9, 'H.A.L Leather', 1, '', '49450.0000', '0.0000', '', '0.0000', '0.0000', '8901.0000', 1, '0.0000', '8901.0000', '0.0000', '58351.0000', '58351.0000', 'received', 'paid', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '8901.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (15, '472', '2018-11-19 06:41:00', 14, 'M.M.TRADE IMPEX', 1, '&lt;p&gt;Royal Transpor&equals;&equals;5910&lt;&sol;p&gt;&lt;p&gt;Royal Transpor&equals;&equals;3870&lt;&sol;p&gt;', '273650.0000', '0.0000', '', '0.0000', '0.0000', '49257.0000', 1, '0.0000', '49257.0000', '9780.0000', '332687.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '49257.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (19, 'LS/18-19/027', '2018-12-20 03:40:00', 18, 'Leather Smith House Of Fashion P Ltd', 1, '&lt;p&gt;ROYAL TRANSPORT&lt;&sol;p&gt;', '85000.0000', '0.0000', '', '0.0000', '0.0000', '10200.0000', 1, '0.0000', '10200.0000', '1980.0000', '97180.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '10200.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (20, 'LS/18-19/219', '2019-01-08 10:25:00', 18, 'Leather Smith House Of Fashion P Ltd', 1, '', '124800.0000', '0.0000', '', '0.0000', '0.0000', '22464.0000', 1, '0.0000', '22464.0000', '0.0000', '147264.0000', '147264.0000', 'received', 'paid', 1, 1, '2019-01-12 04:34:37', NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '22464.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (21, 'PO2019/04/0007', '2019-03-29 08:00:00', 15, 'ANMOL GIFT& NOVELTY', 1, '', '249343.2000', '0.0000', '', '0.0000', '0.0000', '44881.7760', 1, '0.0000', '44881.7760', '0.0000', '294224.9760', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '44881.7760');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (22, 'PO2019/04/0008', '2019-04-11 05:19:00', 28, 'K V PRINTERS', 1, '', '11875.0000', '0.0000', '', '0.0000', '0.0000', '2137.5000', 1, '0.0000', '2137.5000', '0.0000', '14012.5000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '2137.5000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (23, '413', '2019-04-11 05:23:00', 28, 'K V PRINTERS', 1, '', '30500.0000', '0.0000', '', '0.0000', '0.0000', '5490.0000', 1, '0.0000', '5490.0000', '0.0000', '35990.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '5490.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (24, 'SG-498', '2019-08-01 08:56:00', 14, 'M.M.TRADE IMPEX', 1, '', '72330.0000', '0.0000', '', '0.0000', '0.0000', '13019.4000', 1, '0.0000', '13019.4000', '0.0000', '85349.4000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '13019.4000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (25, 'SG-489', '2019-08-01 09:02:00', 14, 'M.M.TRADE IMPEX', 1, '', '131112.0000', '0.0000', '', '0.0000', '0.0000', '23600.1600', 1, '0.0000', '23600.1600', '0.0000', '154712.1600', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '23600.1600');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (27, 'PO2019/08/0009', '2019-08-22 03:28:00', 37, 'M.M.R IMPEX LLP', 1, '', '100464.0000', '0.0000', '', '0.0000', '0.0000', '18083.5200', 1, '0.0000', '18083.5200', '0.0000', '118547.5200', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '18083.5200');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (28, 'LS/19-20/103', '2019-08-16 09:00:00', 18, 'Leather Smith House Of Fashion P Ltd', 1, '', '188597.2500', '0.0000', '', '0.0000', '0.0000', '33947.5050', 1, '0.0000', '33947.5050', '0.0000', '222544.7550', '0.0000', 'received', 'pending', 2, NULL, NULL, NULL, 0, NULL, 30, '0.0000', 'PR2019/09/0001', NULL, '-97704.0000', '0.0000', '0.0000', '33947.5050');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (30, 'LS/19-20/103', '2019-09-16 03:25:00', 18, 'Leather Smith House Of Fashion P Ltd', 1, '', '-82800.0000', '0.0000', NULL, '0.0000', '0.0000', '-14904.0000', 1, '0.0000', '-14904.0000', '0.0000', '-97704.0000', '0.0000', 'ordered', 'pending', 1, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', 'PR2019/09/0001', 28, '0.0000', '0.0000', '0.0000', '-14904.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (33, 'SR2019/09/0007', '2019-08-13 03:55:00', 18, 'Leather Smith House Of Fashion P Ltd', 1, '', '41418.0000', '0.0000', '', '0.0000', '0.0000', '7455.2400', 1, '0.0000', '7455.2400', '0.0000', '48873.2400', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, 34, '0.0000', 'PR2019/09/0001', NULL, '-47768.7600', '0.0000', '0.0000', '7455.2400');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (34, 'SR2019/09/0007', '2019-09-16 03:25:00', 18, 'Leather Smith House Of Fashion P Ltd', 1, '', '-40482.0000', '0.0000', NULL, '0.0000', '0.0000', '-7286.7600', 1, '0.0000', '-7286.7600', '0.0000', '-47768.7600', '0.0000', 'ordered', 'pending', 1, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', 'PR2019/09/0001', 33, '0.0000', '0.0000', '0.0000', '-7286.7600');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (35, 'SG-741', '2019-10-01 04:57:00', 37, 'M.M.R IMPEX LLP', 1, '', '351550.0000', '0.0000', '', '0.0000', '0.0000', '63279.0000', 1, '0.0000', '63279.0000', '0.0000', '414829.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '63279.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (37, 'SALE2019/10/0003', '2019-10-21 09:22:00', 43, 'PRAGATI ENTERPRISES', 1, '', '50043.8000', '0.0000', '', '0.0000', '0.0000', '9007.8840', 1, '0.0000', '9007.8840', '0.0000', '59051.6840', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '4503.9420', '4503.9420', '0.0000');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (38, 'SG-884', '2019-10-25 10:34:00', 37, 'M.M.R IMPEX LLP', 1, '', '36981.0000', '0.0000', '', '0.0000', '0.0000', '6656.5800', 1, '0.0000', '6656.5800', '0.0000', '43637.5800', '0.0000', 'received', 'pending', 1, NULL, NULL, NULL, 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', '0.0000', '0.0000', '6656.5800');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (39, 'LS/18-19/204', '2018-11-27 09:05:00', 18, 'Leather Smith House Of Fashion P Ltd', 1, '', '140244.0000', '0.0000', '', '0.0000', '0.0000', '25243.9200', 1, '0.0000', '25243.9200', '0.0000', '165487.9200', '0.0000', 'received', 'pending', 1, 1, '2019-11-03 07:46:27', NULL, 0, NULL, 40, '0.0000', 'PR2019/11/0001', NULL, '-44958.0000', '0.0000', '0.0000', '25243.9200');
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (40, 'LS/18-19/204', '2019-11-03 07:49:00', 18, 'Leather Smith House Of Fashion P Ltd', 1, '', '-38100.0000', '0.0000', NULL, '0.0000', '0.0000', '-6858.0000', 1, '0.0000', '-6858.0000', '0.0000', '-44958.0000', '0.0000', 'returned', 'pending', 1, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', 'PR2019/11/0001', 39, '0.0000', '0.0000', '0.0000', '-6858.0000');


#
# TABLE STRUCTURE FOR: sma_quote_items
#

DROP TABLE IF EXISTS `sma_quote_items`;

CREATE TABLE `sma_quote_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `quote_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `quote_id` (`quote_id`),
  KEY `product_id` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_quotes
#

DROP TABLE IF EXISTS `sma_quotes`;

CREATE TABLE `sma_quotes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `internal_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT '0.0000',
  `order_discount` decimal(25,4) DEFAULT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT '0.0000',
  `product_tax` decimal(25,4) DEFAULT '0.0000',
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT NULL,
  `total_tax` decimal(25,4) DEFAULT NULL,
  `shipping` decimal(25,4) DEFAULT '0.0000',
  `grand_total` decimal(25,4) NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `supplier` varchar(55) DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_return_items
#

DROP TABLE IF EXISTS `sma_return_items`;

CREATE TABLE `sma_return_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `return_id` int(11) unsigned NOT NULL,
  `product_id` int(11) unsigned NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `comment` varchar(255) DEFAULT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `return_id` (`return_id`),
  KEY `product_id` (`product_id`),
  KEY `product_id_2` (`product_id`,`return_id`),
  KEY `return_id_2` (`return_id`,`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8;

INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8, 2, 56, 'JI-M-BBI-0012', 'JI Ind Brass Bkl', 'standard', 161, '450.0000', '531.0000', '5.0000', 1, '405.0000', 5, '18%', '919', '4595.0000', '2655.0000', '', '1450.0000', 2, 'PCS', '5.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9, 1, 263, 'G7-M-CHB-0001', 'G7 Chest Bag', 'standard', 0, '847.4576', '1000.0000', '5.0000', 1, '762.7120', 5, '18%', '0', '0.0000', '5000.0000', '', '1000.0000', 2, 'PCS', '5.0000', NULL, '18%', '0.0000', '0.0000', '762.7120');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10, 1, 266, 'G7-M-SLB-0001', 'G7 Sling Bag', 'standard', 0, '847.4576', '1000.0000', '4.0000', 1, '610.1696', 5, '18%', '0', '0.0000', '4000.0000', '', '1000.0000', 2, 'PCS', '4.0000', NULL, '18%', '0.0000', '0.0000', '610.1696');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11, 1, 267, 'G7-M-SLB-0002', 'G7 Sling Bag', 'standard', 0, '847.4576', '1000.0000', '5.0000', 1, '762.7120', 5, '18%', '0', '0.0000', '5000.0000', '', '1000.0000', 2, 'PCS', '5.0000', NULL, '18%', '0.0000', '0.0000', '762.7120');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12, 1, 268, 'G7-M-LWLT-0033', 'G7 Zebru Wallet', 'standard', 0, '847.4576', '1000.0000', '6.0000', 1, '915.2544', 5, '18%', '0', '0.0000', '6000.0000', '', '1000.0000', 2, 'PCS', '6.0000', NULL, '18%', '0.0000', '0.0000', '915.2544');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13, 1, 269, 'G7-M-LWLT-0034', 'G7 Mens Wallet', 'standard', 0, '635.5932', '750.0000', '2.0000', 1, '228.8136', 5, '18%', '0', '0.0000', '1500.0000', '', '750.0000', 2, 'PCS', '2.0000', NULL, '18%', '0.0000', '0.0000', '228.8136');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14, 1, 272, 'G7-M-LWLT-0036', 'G7 Leather Wallet', 'standard', 0, '847.4576', '1000.0000', '119.0000', 1, '18152.5456', 5, '18%', '0', '0.0000', '119000.0000', '', '1000.0000', 2, 'PCS', '119.0000', NULL, '18%', '0.0000', '0.0000', '18152.5456');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (27, 5, 334, 'LS-M-SLP-004=010', 'LS  Slipper', 'standard', NULL, '720.0000', '849.6000', '49.0000', 1, '6350.4000', 5, '18%', '0', '0.0000', '41630.4000', '', '720.0000', 2, 'PCS', '49.0000', NULL, '18%', '0.0000', '0.0000', '6350.4000');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (28, 5, 335, 'LS-M-SLP-005=006', 'LS Slipper', 'standard', NULL, '593.0000', '699.7400', '8.0000', 1, '853.9200', 5, '18%', '0', '0.0000', '5597.9200', '', '593.0000', 2, 'PCS', '8.0000', NULL, '18%', '0.0000', '0.0000', '853.9200');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (32, 6, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', 'standard', 0, '635.0000', '749.3000', '60.0000', 1, '6858.0000', 5, '18%', '0', '0.0000', '44958.0000', '', '635.0000', 2, 'PCS', '60.0000', NULL, '18%', '0.0000', '0.0000', '6858.0000');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (35, 3, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', 'standard', 0, '635.0000', '749.3000', '26.0000', 1, '2971.8000', 5, '18%', '0', '0.0000', '19481.8000', 'undefined', '635.0000', 2, 'PCS', '26.0000', NULL, '18%', '0.0000', '0.0000', '2971.8000');
INSERT INTO `sma_return_items` (`id`, `return_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (36, 3, 335, 'LS-M-SLP-005=006', 'LS Slipper', 'standard', 0, '593.0000', '699.7400', '32.0000', 1, '3415.6800', 5, '18%', '0', '0.0000', '22391.6800', 'undefined', '593.0000', 2, 'PCS', '32.0000', NULL, '18%', '0.0000', '0.0000', '3415.6800');


#
# TABLE STRUCTURE FOR: sma_returns
#

DROP TABLE IF EXISTS `sma_returns`;

CREATE TABLE `sma_returns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `staff_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT '0.0000',
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT '0.0000',
  `order_discount` decimal(25,4) DEFAULT '0.0000',
  `product_tax` decimal(25,4) DEFAULT '0.0000',
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT '0.0000',
  `total_tax` decimal(25,4) DEFAULT '0.0000',
  `grand_total` decimal(25,4) NOT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `total_items` smallint(6) DEFAULT NULL,
  `paid` decimal(25,4) DEFAULT '0.0000',
  `surcharge` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `attachment` varchar(55) DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `sma_returns` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `created_by`, `updated_by`, `updated_at`, `total_items`, `paid`, `surcharge`, `attachment`, `hash`, `cgst`, `sgst`, `igst`) VALUES (1, '2018-03-03 10:50:00', 'SR2018/12/0001', 21, 'Iringal Trendz Pvt. Ltd.', 3, 'JI Corporation', 1, '', '', '119067.7928', '0.0000', '', '0.0000', '0.0000', '21432.2072', 1, '0.0000', '21432.2072', '140500.0000', 1, 1, '2019-01-31 06:41:26', 141, '0.0000', '0.0000', NULL, '71f7e42a4d797cf986e1d26924f573633a80459f1446e85b4c5dc3ddee9cfdb0', '0.0000', '0.0000', '21432.2072');
INSERT INTO `sma_returns` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `created_by`, `updated_by`, `updated_at`, `total_items`, `paid`, `surcharge`, `attachment`, `hash`, `cgst`, `sgst`, `igst`) VALUES (2, '2019-01-13 04:11:00', '053', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '2250.0000', '4595.0000', '', '4595.0000', '0.0000', '405.0000', 1, '0.0000', '405.0000', '2655.0000', 1, 1, '2019-01-13 04:11:49', 5, '0.0000', '0.0000', NULL, 'f7210658f7b612e25ff09c7f52e5999437d05c8fb51166fc959f3f0b4429e5c8', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_returns` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `created_by`, `updated_by`, `updated_at`, `total_items`, `paid`, `surcharge`, `attachment`, `hash`, `cgst`, `sgst`, `igst`) VALUES (3, '2019-10-21 17:00:00', 'LS/18-19/204', 35, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '35486.0000', '0.0000', '', '0.0000', '0.0000', '6387.4800', 1, '0.0000', '6387.4800', '41873.4800', 1, 1, '2019-11-03 08:30:32', 58, '0.0000', '0.0000', NULL, '562d8c06f93c66db79a7c0232ae0d33af9dc67d1a1558ea8079532d5c3793205', '0.0000', '0.0000', '6387.4800');
INSERT INTO `sma_returns` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `created_by`, `updated_by`, `updated_at`, `total_items`, `paid`, `surcharge`, `attachment`, `hash`, `cgst`, `sgst`, `igst`) VALUES (5, '2019-10-22 17:00:00', 'LS/18-19/204', 35, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '40024.0000', '0.0000', '', '0.0000', '0.0000', '7204.3200', 1, '0.0000', '7204.3200', '47228.3200', 1, 1, '2019-11-03 08:19:18', 57, '0.0000', '0.0000', NULL, '6f657b9b8f7a009d5a2bf7535c589e2e14e8106e185658fbc8911c1d7167a22d', '0.0000', '0.0000', '7204.3200');
INSERT INTO `sma_returns` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `grand_total`, `created_by`, `updated_by`, `updated_at`, `total_items`, `paid`, `surcharge`, `attachment`, `hash`, `cgst`, `sgst`, `igst`) VALUES (6, '2019-10-20 17:00:00', 'LS/18-19/204', 35, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '38100.0000', '0.0000', '', '0.0000', '0.0000', '6858.0000', 1, '0.0000', '6858.0000', '44958.0000', 1, 1, '2019-11-03 08:28:12', 60, '0.0000', '0.0000', NULL, '26290ffd4baa848e96470f668a53237ae13488a157e7f5b1321c00fe3212e864', '0.0000', '0.0000', '6858.0000');


#
# TABLE STRUCTURE FOR: sma_sale_items
#

DROP TABLE IF EXISTS `sma_sale_items`;

CREATE TABLE `sma_sale_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_id` int(11) unsigned NOT NULL,
  `product_id` int(11) unsigned NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `sale_item_id` int(11) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `comment` varchar(255) DEFAULT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `sale_id` (`sale_id`),
  KEY `product_id` (`product_id`),
  KEY `product_id_2` (`product_id`,`sale_id`),
  KEY `sale_id_2` (`sale_id`,`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1564 DEFAULT CHARSET=utf8;

INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (383, 9, 11, 'JI-M-IBLT-0001', 'JI Italian L Belt', 'standard', 22, '383.8983', '453.0000', '12.0000', 1, '829.2204', 5, '18%', '507', '6084.0000', '5436.0000', '', '960.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '414.6102', '414.6102', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (384, 9, 11, 'JI-M-IBLT-0001', 'JI Italian L Belt', 'standard', 23, '383.8983', '453.0000', '12.0000', 1, '829.2204', 5, '18%', '507', '6084.0000', '5436.0000', '', '960.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '414.6102', '414.6102', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (385, 10, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 29, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '678', '2034.0000', '1416.0000', '', '1150.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (386, 10, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 28, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '678', '2034.0000', '1416.0000', '', '1150.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (387, 10, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 27, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '678', '2034.0000', '1416.0000', '', '1150.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (388, 10, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 26, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '678', '2034.0000', '1416.0000', '', '1150.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (389, 10, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 25, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '678', '2034.0000', '1416.0000', '', '1150.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (390, 10, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 24, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '678', '2034.0000', '1416.0000', '', '1150.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (391, 10, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 31, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '678', '2034.0000', '1416.0000', '', '1150.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (392, 10, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 30, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '678', '2034.0000', '1416.0000', '', '1150.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (393, 36, 135, 'JI-M-ILB-0009', 'JI Indian L Belt', 'standard', 362, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '234.5', '2814.0000', '3186.0000', '', '500.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (394, 36, 135, 'JI-M-ILB-0009', 'JI Indian L Belt', 'standard', 361, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '234.5', '2814.0000', '3186.0000', '', '500.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (395, 36, 136, 'JI-M-ILB-0010', 'JI Indian L Belt', 'standard', 365, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '234.5', '2814.0000', '3186.0000', '', '500.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (396, 36, 136, 'JI-M-ILB-0010', 'JI Indian L Belt', 'standard', 364, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '234.5', '2814.0000', '3186.0000', '', '500.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (397, 36, 137, 'JI-M-ILB-0011', 'JI Indian L Belt', 'standard', 366, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '234.5', '2814.0000', '3186.0000', '', '500.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (398, 36, 137, 'JI-M-ILB-0011', 'JI Indian L Belt', 'standard', 367, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '234.5', '2814.0000', '3186.0000', '', '500.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (399, 37, 92, 'JI-M-LB-0001', 'JI Lock Belt', 'standard', 268, '275.0000', '324.5000', '12.0000', 1, '594.0000', 5, '18%', '665.5', '7986.0000', '3894.0000', '', '990.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '297.0000', '297.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (400, 37, 93, 'JI-M-LB-0002', 'JI Lock Belt', 'standard', 269, '275.0000', '324.5000', '6.0000', 1, '297.0000', 5, '18%', '665.5', '3993.0000', '1947.0000', '', '990.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '148.5000', '148.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (401, 37, 94, 'JI-M-LB-0003', 'JI Lock Belt', 'standard', 270, '275.0000', '324.5000', '6.0000', 1, '297.0000', 5, '18%', '665.5', '3993.0000', '1947.0000', '', '990.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '148.5000', '148.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (402, 37, 108, 'JI-M-LB-0004', 'JI Lock Belt', 'standard', 292, '375.0000', '442.5000', '9.0000', 1, '607.5000', 5, '18%', '647.5', '5827.5000', '3982.5000', '', '1090.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '303.7500', '303.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (403, 37, 108, 'JI-M-LB-0004', 'JI Lock Belt', 'standard', 293, '375.0000', '442.5000', '3.0000', 1, '202.5000', 5, '18%', '647.5', '1942.5000', '1327.5000', '', '1090.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '101.2500', '101.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (404, 37, 109, 'JI-M-LB-0005', 'JI Lock Belt', 'standard', 295, '375.0000', '442.5000', '10.0000', 1, '675.0000', 5, '18%', '647.5', '6475.0000', '4425.0000', '', '1090.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (405, 37, 109, 'JI-M-LB-0005', 'JI Lock Belt', 'standard', 294, '375.0000', '442.5000', '3.0000', 1, '202.5000', 5, '18%', '647.5', '1942.5000', '1327.5000', '', '1090.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '101.2500', '101.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (406, 11, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 37, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '678', '6102.0000', '4248.0000', '', '1150.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (407, 11, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 36, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '678', '6102.0000', '4248.0000', '', '1150.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (408, 11, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 35, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '678', '6102.0000', '4248.0000', '', '1150.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (409, 11, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 34, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '678', '6102.0000', '4248.0000', '', '1150.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (410, 11, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 33, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '678', '6102.0000', '4248.0000', '', '1150.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (411, 11, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 32, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '678', '6102.0000', '4248.0000', '', '1150.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (424, 39, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 'standard', 38, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '718', '4308.0000', '2832.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (425, 39, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 'standard', 39, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '718', '4308.0000', '2832.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (426, 39, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 'standard', 40, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '718', '4308.0000', '2832.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (427, 39, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 'standard', 41, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '718', '4308.0000', '2832.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (428, 39, 14, 'JI-M-IBLT-0004', 'JI Italian L Belt', 'standard', 42, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '718', '4308.0000', '2832.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (429, 40, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 'standard', 43, '425.0000', '501.5000', '3.0000', 1, '229.5000', 5, '18%', '748.5', '2245.5000', '1504.5000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '114.7500', '114.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (430, 40, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 'standard', 44, '425.0000', '501.5000', '3.0000', 1, '229.5000', 5, '18%', '748.5', '2245.5000', '1504.5000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '114.7500', '114.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (431, 40, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 'standard', 45, '425.0000', '501.5000', '9.0000', 1, '688.5000', 5, '18%', '748.5', '6736.5000', '4513.5000', '', '1250.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '344.2500', '344.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (432, 40, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 'standard', 46, '425.0000', '501.5000', '3.0000', 1, '229.5000', 5, '18%', '748.5', '2245.5000', '1504.5000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '114.7500', '114.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (433, 40, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 'standard', 69, '425.0000', '501.5000', '3.0000', 1, '229.5000', 5, '18%', '748.5', '2245.5000', '1504.5000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '114.7500', '114.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (434, 40, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 'standard', 70, '425.0000', '501.5000', '3.0000', 1, '229.5000', 5, '18%', '748.5', '2245.5000', '1504.5000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '114.7500', '114.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (435, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 103, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '727', '4362.0000', '2478.0000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (436, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 104, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '727', '4362.0000', '2478.0000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (437, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 105, '380.0000', '448.4000', '6.0000', 1, '410.4000', 5, '18%', '741.6', '4449.6000', '2690.4000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '205.2000', '205.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (438, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 106, '380.0000', '448.4000', '6.0000', 1, '410.4000', 5, '18%', '741.6', '4449.6000', '2690.4000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '205.2000', '205.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (439, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 107, '380.0000', '448.4000', '6.0000', 1, '410.4000', 5, '18%', '741.6', '4449.6000', '2690.4000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '205.2000', '205.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (440, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 108, '380.0000', '448.4000', '6.0000', 1, '410.4000', 5, '18%', '741.6', '4449.6000', '2690.4000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '205.2000', '205.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (441, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 109, '380.0000', '448.4000', '6.0000', 1, '410.4000', 5, '18%', '741.6', '4449.6000', '2690.4000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '205.2000', '205.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (442, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 110, '380.0000', '448.4000', '6.0000', 1, '410.4000', 5, '18%', '741.6', '4449.6000', '2690.4000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '205.2000', '205.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (443, 41, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 111, '380.0000', '448.4000', '6.0000', 1, '410.4000', 5, '18%', '741.6', '4449.6000', '2690.4000', '', '1140.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '205.2000', '205.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (444, 42, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 'standard', 55, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '787', '4722.0000', '2478.0000', '', '1200.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (445, 42, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 'standard', 96, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1200.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (446, 42, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 'standard', 97, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1200.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (447, 42, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 'standard', 99, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1200.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (448, 42, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 'standard', 100, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1200.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (449, 42, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 'standard', 101, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1200.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (450, 42, 17, 'JI-M-IBLT-0007', 'JI Italian L Belt', 'standard', 102, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1200.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (451, 43, 38, 'JI-M-IBLT-0008', 'JI Italian L Belt', 'standard', 120, '385.0000', '454.3000', '6.0000', 1, '415.8000', 5, '18%', '735.7', '4414.2000', '2725.8000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '207.9000', '207.9000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (452, 43, 38, 'JI-M-IBLT-0008', 'JI Italian L Belt', 'standard', 121, '385.0000', '454.3000', '3.0000', 1, '207.9000', 5, '18%', '735.7', '2207.1000', '1362.9000', '', '1190.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '103.9500', '103.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (453, 43, 38, 'JI-M-IBLT-0008', 'JI Italian L Belt', 'standard', 122, '385.0000', '454.3000', '3.0000', 1, '207.9000', 5, '18%', '735.7', '2207.1000', '1362.9000', '', '1190.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '103.9500', '103.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (454, 43, 38, 'JI-M-IBLT-0008', 'JI Italian L Belt', 'standard', 123, '385.0000', '454.3000', '3.0000', 1, '207.9000', 5, '18%', '735.7', '2207.1000', '1362.9000', '', '1190.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '103.9500', '103.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (455, 43, 38, 'JI-M-IBLT-0008', 'JI Italian L Belt', 'standard', 124, '385.0000', '454.3000', '3.0000', 1, '207.9000', 5, '18%', '735.7', '2207.1000', '1362.9000', '', '1190.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '103.9500', '103.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (456, 44, 110, 'JI-M-LB-0006', 'JI Lock Belt', 'standard', 296, '375.0000', '442.5000', '10.0000', 1, '675.0000', 5, '18%', '647.5', '6475.0000', '4425.0000', '', '1090.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (457, 44, 110, 'JI-M-LB-0006', 'JI Lock Belt', 'standard', 297, '375.0000', '442.5000', '3.0000', 1, '202.5000', 5, '18%', '647.5', '1942.5000', '1327.5000', '', '1090.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '101.2500', '101.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (458, 44, 111, 'JI-M-LB-0007', 'JI Lock Belt', 'standard', 298, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '647.5', '3885.0000', '2655.0000', '', '1090.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (459, 44, 111, 'JI-M-LB-0007', 'JI Lock Belt', 'standard', 299, '375.0000', '442.5000', '3.0000', 1, '202.5000', 5, '18%', '647.5', '1942.5000', '1327.5000', '', '1090.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '101.2500', '101.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (460, 44, 112, 'JI-M-LB-0008', 'JI Lock Belt', 'standard', 300, '375.0000', '442.5000', '9.0000', 1, '607.5000', 5, '18%', '647.5', '5827.5000', '3982.5000', '', '1090.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '303.7500', '303.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (461, 44, 112, 'JI-M-LB-0008', 'JI Lock Belt', 'standard', 301, '375.0000', '442.5000', '3.0000', 1, '202.5000', 5, '18%', '647.5', '1942.5000', '1327.5000', '', '1090.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '101.2500', '101.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (462, 44, 113, 'JI-M-LB-0009', 'JI Lock Belt', 'standard', 303, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '647.5', '3885.0000', '2655.0000', '', '1090.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (463, 44, 113, 'JI-M-LB-0009', 'JI Lock Belt', 'standard', 302, '375.0000', '442.5000', '3.0000', 1, '202.5000', 5, '18%', '647.5', '1942.5000', '1327.5000', '', '1090.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '101.2500', '101.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (464, 45, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 118, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '778', '2334.0000', '1416.0000', '', '1200.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (465, 45, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 117, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '778', '2334.0000', '1416.0000', '', '1200.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (466, 45, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 116, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '778', '2334.0000', '1416.0000', '', '1200.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (467, 45, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 115, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '778', '2334.0000', '1416.0000', '', '1200.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (468, 45, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 61, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '787', '2361.0000', '1239.0000', '', '1200.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (469, 45, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 60, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '787', '2361.0000', '1239.0000', '', '1200.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (470, 46, 20, 'JI-M-IBLT-0010', 'JI Italian L Belt', 'standard', 64, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1250.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (471, 46, 20, 'JI-M-IBLT-0010', 'JI Italian L Belt', 'standard', 63, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1250.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (472, 46, 20, 'JI-M-IBLT-0010', 'JI Italian L Belt', 'standard', 62, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '778', '4668.0000', '2832.0000', '', '1250.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (473, 47, 21, 'JI-M-IBLT-0011', 'JI Italian L Belt', 'standard', 65, '400.0000', '472.0000', '12.0000', 1, '864.0000', 5, '18%', '778', '9336.0000', '5664.0000', '', '1250.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '432.0000', '432.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (474, 47, 22, 'JI-M-IBLT-0012', 'JI Italian L Belt', 'standard', 66, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '766.5', '4599.0000', '2301.0000', '', '1150.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (475, 47, 22, 'JI-M-IBLT-0012', 'JI Italian L Belt', 'standard', 67, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '766.5', '4599.0000', '2301.0000', '', '1150.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (476, 47, 23, 'JI-M-IBLT-0013', 'JI Italian L Belt', 'standard', 68, '375.0000', '442.5000', '12.0000', 1, '810.0000', 5, '18%', '657.5', '7890.0000', '5310.0000', '', '1100.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (477, 47, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 'standard', 71, '350.0000', '413.0000', '9.0000', 1, '567.0000', 5, '18%', '687', '6183.0000', '3717.0000', '', '1100.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '283.5000', '283.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (478, 47, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 'standard', 72, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '687', '2061.0000', '1239.0000', '', '1100.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (479, 47, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 'standard', 73, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '687', '2061.0000', '1239.0000', '', '1100.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (480, 47, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 'standard', 74, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '687', '2061.0000', '1239.0000', '', '1100.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (481, 47, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 'standard', 75, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '778', '7002.0000', '4248.0000', '', '1250.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (482, 47, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 'standard', 76, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '778', '2334.0000', '1416.0000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (483, 47, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 'standard', 77, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '778', '2334.0000', '1416.0000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (484, 47, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 'standard', 78, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '778', '2334.0000', '1416.0000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (485, 48, 58, 'JI-M-IBLT-0020', 'JI Italian L Belt', 'standard', 165, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (486, 48, 58, 'JI-M-IBLT-0020', 'JI Italian L Belt', 'standard', 164, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (487, 48, 58, 'JI-M-IBLT-0020', 'JI Italian L Belt', 'standard', 163, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (488, 48, 29, 'JI-M-IBLT-0019', 'JI Italian L Belt', 'standard', 85, '425.0000', '501.5000', '6.0000', 1, '459.0000', 5, '18%', '848.5', '5091.0000', '3009.0000', '', '1350.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '229.5000', '229.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (489, 48, 29, 'JI-M-IBLT-0019', 'JI Italian L Belt', 'standard', 84, '425.0000', '501.5000', '6.0000', 1, '459.0000', 5, '18%', '848.5', '5091.0000', '3009.0000', '', '1350.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '229.5000', '229.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (490, 48, 28, 'JI-M-IBLT-0018', 'JI Italian L Belt', 'standard', 83, '350.0000', '413.0000', '12.0000', 1, '756.0000', 5, '18%', '637', '7644.0000', '4956.0000', '', '1050.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (491, 48, 27, 'JI-M-IBLT-0017', 'JI Italian L Belt', 'standard', 82, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '657.5', '3945.0000', '2655.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (492, 48, 27, 'JI-M-IBLT-0017', 'JI Italian L Belt', 'standard', 81, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '657.5', '3945.0000', '2655.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (493, 48, 26, 'JI-M-IBLT-0016', 'JI Italian L Belt', 'standard', 80, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '657.5', '3945.0000', '2655.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (494, 48, 26, 'JI-M-IBLT-0016', 'JI Italian L Belt', 'standard', 79, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '657.5', '3945.0000', '2655.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (495, 49, 143, 'JI-M-IBLT-0074', 'JI Italian L Belt', 'standard', 379, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '466.5', '2799.0000', '2301.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (496, 49, 143, 'JI-M-IBLT-0074', 'JI Italian L Belt', 'standard', 380, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '607.5', '3645.0000', '2655.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (497, 49, 142, 'JI-M-IBLT-0075', 'JI Italian L Belt', 'standard', 378, '250.0000', '295.0000', '24.0000', 1, '1080.0000', 5, '18%', '655', '15720.0000', '7080.0000', '', '950.0000', NULL, 2, 'PCS', '24.0000', NULL, '9%', '540.0000', '540.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (498, 50, 63, 'JI-M-IBLT-0025', 'JI Italian L Belt', 'standard', 177, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '637', '3822.0000', '2478.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (499, 50, 63, 'JI-M-IBLT-0025', 'JI Italian L Belt', 'standard', 176, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '637', '3822.0000', '2478.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (500, 50, 62, 'JI-M-IBLT-0024', 'JI Italian L Belt', 'standard', 175, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '637', '3822.0000', '2478.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (501, 50, 61, 'JI-M-IBLT-0023', 'JI Italian L Belt', 'standard', 174, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '637', '3822.0000', '2478.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (502, 50, 61, 'JI-M-IBLT-0023', 'JI Italian L Belt', 'standard', 173, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '637', '3822.0000', '2478.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (503, 50, 60, 'JI-M-IBLT-0022', 'JI Italian L Belt', 'standard', 172, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '637', '3822.0000', '2478.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (504, 50, 60, 'JI-M-IBLT-0022', 'JI Italian L Belt', 'standard', 171, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '637', '3822.0000', '2478.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (505, 50, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 'standard', 369, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '666.5', '3999.0000', '2301.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (506, 50, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 'standard', 170, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '666.5', '3999.0000', '2301.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (507, 50, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 'standard', 169, '325.0000', '383.5000', '12.0000', 1, '702.0000', 5, '18%', '666.5', '7998.0000', '4602.0000', '', '1050.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '351.0000', '351.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (508, 50, 59, 'JI-M-IBLT-0021', 'JI Italian L Belt', 'standard', 168, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '666.5', '3999.0000', '2301.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (509, 51, 68, 'JI-M-IBLT-0030', 'JI Italian L Belt', 'standard', 189, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '696.5', '4179.0000', '2301.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (510, 51, 67, 'JI-M-IBLT-0029', 'JI Italian L Belt', 'standard', 188, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '766.5', '4599.0000', '2301.0000', '', '1150.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (511, 51, 67, 'JI-M-IBLT-0029', 'JI Italian L Belt', 'standard', 187, '325.0000', '383.5000', '12.0000', 1, '702.0000', 5, '18%', '766.5', '9198.0000', '4602.0000', '', '1150.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '351.0000', '351.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (512, 51, 66, 'JI-M-IBLT-0028', 'JI Italian L Belt', 'standard', 186, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (513, 51, 66, 'JI-M-IBLT-0028', 'JI Italian L Belt', 'standard', 185, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (514, 51, 66, 'JI-M-IBLT-0028', 'JI Italian L Belt', 'standard', 184, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (515, 51, 65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 'standard', 183, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (516, 51, 65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 'standard', 182, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (517, 51, 65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 'standard', 181, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (518, 51, 65, 'JI-M-IBLT-0027', 'JI Italian L Belt', 'standard', 180, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '687', '4122.0000', '2478.0000', '', '1100.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (519, 51, 64, 'JI-M-IBLT-0026', 'JI Italian L Belt', 'standard', 179, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '666.5', '3999.0000', '2301.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (520, 51, 64, 'JI-M-IBLT-0026', 'JI Italian L Belt', 'standard', 178, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '666.5', '3999.0000', '2301.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (521, 52, 74, 'JI-M-IBLT-0035', 'JI Italian L Belt', 'standard', 201, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '758', '4548.0000', '2832.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (522, 52, 74, 'JI-M-IBLT-0035', 'JI Italian L Belt', 'standard', 200, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '758', '4548.0000', '2832.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (523, 52, 74, 'JI-M-IBLT-0035', 'JI Italian L Belt', 'standard', 199, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '758', '4548.0000', '2832.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (524, 52, 73, 'JI-M-IBLT-0034', 'JI Italian L Belt', 'standard', 198, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '808', '4848.0000', '2832.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (525, 52, 73, 'JI-M-IBLT-0034', 'JI Italian L Belt', 'standard', 197, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '808', '4848.0000', '2832.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (526, 52, 73, 'JI-M-IBLT-0034', 'JI Italian L Belt', 'standard', 196, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '808', '4848.0000', '2832.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (527, 52, 71, 'JI-M-IBLT-0033', 'JI Italian L Belt', 'standard', 194, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '767', '4602.0000', '2478.0000', '', '1180.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (528, 52, 71, 'JI-M-IBLT-0033', 'JI Italian L Belt', 'standard', 193, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '767', '4602.0000', '2478.0000', '', '1180.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (529, 52, 70, 'JI-M-IBLT-0032', 'JI Italian L Belt', 'standard', 192, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '667', '4002.0000', '2478.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (530, 52, 69, 'JI-M-IBLT-0031', 'JI Italian L Belt', 'standard', 191, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '787.5', '4725.0000', '2655.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (531, 52, 69, 'JI-M-IBLT-0031', 'JI Italian L Belt', 'standard', 190, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '787.5', '4725.0000', '2655.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (532, 53, 79, 'JI-M-IBLT-0040', 'JI Italian L Belt', 'standard', 219, '375.0000', '442.5000', '24.0000', 1, '1620.0000', 5, '18%', '637.5', '15300.0000', '10620.0000', '', '1080.0000', NULL, 2, 'PCS', '24.0000', NULL, '9%', '810.0000', '810.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (533, 53, 78, 'JI-M-IBLT-0039', 'JI Italian L Belt', 'standard', 218, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '787.5', '4725.0000', '2655.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (534, 53, 78, 'JI-M-IBLT-0039', 'JI Italian L Belt', 'standard', 217, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '787.5', '4725.0000', '2655.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (535, 53, 78, 'JI-M-IBLT-0039', 'JI Italian L Belt', 'standard', 216, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '787.5', '4725.0000', '2655.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (536, 53, 77, 'JI-M-IBLT-0038', 'JI Italian L Belt', 'standard', 215, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '758', '4548.0000', '2832.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (537, 53, 77, 'JI-M-IBLT-0038', 'JI Italian L Belt', 'standard', 214, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '758', '4548.0000', '2832.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (538, 53, 77, 'JI-M-IBLT-0038', 'JI Italian L Belt', 'standard', 213, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '758', '4548.0000', '2832.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (539, 53, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 'standard', 212, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (540, 53, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 'standard', 211, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (541, 53, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 'standard', 210, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (542, 53, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 'standard', 209, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (543, 53, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 'standard', 208, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (544, 53, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 'standard', 207, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (545, 53, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 'standard', 206, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (546, 53, 76, 'JI-M-IBLT-0037', 'JI Italian L Belt', 'standard', 205, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (547, 53, 75, 'JI-M-IBLT-0036', 'JI Italian L Belt', 'standard', 204, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '787.5', '4725.0000', '2655.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (548, 53, 75, 'JI-M-IBLT-0036', 'JI Italian L Belt', 'standard', 203, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '787.5', '4725.0000', '2655.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (549, 53, 75, 'JI-M-IBLT-0036', 'JI Italian L Belt', 'standard', 202, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '787.5', '4725.0000', '2655.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (550, 54, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 'standard', 113, '650.0000', '767.0000', '12.0000', 1, '1404.0000', 5, '18%', '1083', '12996.0000', '9204.0000', '', '1850.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '702.0000', '702.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (551, 54, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 'standard', 114, '650.0000', '767.0000', '6.0000', 1, '702.0000', 5, '18%', '1083', '6498.0000', '4602.0000', '', '1850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '351.0000', '351.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (552, 54, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 'standard', 112, '650.0000', '767.0000', '6.0000', 1, '702.0000', 5, '18%', '1083', '6498.0000', '4602.0000', '', '1850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '351.0000', '351.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (553, 54, 34, 'JI-M-IEL-0001', 'JI Italian Ltd edition ', 'standard', 94, '675.0000', '796.5000', '6.0000', 1, '729.0000', 5, '18%', '1143.5', '6861.0000', '4779.0000', '', '1940.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '364.5000', '364.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (554, 54, 34, 'JI-M-IEL-0001', 'JI Italian Ltd edition ', 'standard', 93, '675.0000', '796.5000', '6.0000', 1, '729.0000', 5, '18%', '1143.5', '6861.0000', '4779.0000', '', '1940.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '364.5000', '364.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (555, 54, 97, 'JI-M-IEL-0002', 'JI Italian Ltd edition ', 'standard', 276, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '867', '5202.0000', '2478.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (556, 54, 97, 'JI-M-IEL-0002', 'JI Italian Ltd edition ', 'standard', 275, '300.0000', '354.0000', '12.0000', 1, '648.0000', 5, '18%', '876', '10512.0000', '4248.0000', '', '1230.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (557, 54, 138, 'JI-M-IEL-0003', 'JI Italian Ltd edition ', 'standard', 368, '400.0000', '472.0000', '12.0000', 1, '864.0000', 5, '18%', '1178', '14136.0000', '5664.0000', '', '1650.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '432.0000', '432.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (582, 56, 90, 'JI-M-IBLT-0050', 'JI Italian L Belt', 'standard', 262, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (583, 56, 90, 'JI-M-IBLT-0050', 'JI Italian L Belt', 'standard', 261, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (584, 56, 89, 'JI-M-IBLT-0049', 'JI Italian L Belt', 'standard', 260, '400.0000', '472.0000', '8.0000', 1, '576.0000', 5, '18%', '708', '5664.0000', '3776.0000', '', '1180.0000', NULL, 2, 'PCS', '8.0000', NULL, '9%', '288.0000', '288.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (585, 56, 88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 'standard', 259, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (586, 56, 88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 'standard', 258, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (587, 56, 88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 'standard', 257, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (588, 56, 88, 'JI-M-IBLT-0048', 'JI Italian L Belt', 'standard', 256, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (589, 56, 87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 'standard', 255, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (590, 56, 87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 'standard', 254, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (591, 56, 87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 'standard', 253, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (592, 56, 87, 'JI-M-IBLT-0047', 'JI Italian L Belt', 'standard', 252, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (593, 56, 86, 'JI-M-IBLT-0046', 'JI Italian L Belt', 'standard', 251, '400.0000', '472.0000', '12.0000', 1, '864.0000', 5, '18%', '708', '8496.0000', '5664.0000', '', '1180.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '432.0000', '432.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (594, 57, 100, 'JI-M-IBLT-0055', 'JI Italian L Belt', 'standard', 279, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (595, 57, 99, 'JI-M-IBLT-0054', 'JI Italian L Belt', 'standard', 278, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '578', '5202.0000', '4248.0000', '', '1050.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (596, 57, 98, 'JI-M-IBLT-0053', 'JI Italian L Belt', 'standard', 277, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '578', '5202.0000', '4248.0000', '', '1050.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (597, 57, 96, 'JI-M-IBLT-0052', 'JI Italian L Belt', 'standard', 274, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (598, 57, 96, 'JI-M-IBLT-0052', 'JI Italian L Belt', 'standard', 273, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '837.5', '5025.0000', '2655.0000', '', '1280.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (599, 57, 91, 'JI-M-IBLT-0051', 'JI Italian L Belt', 'standard', 266, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (600, 57, 91, 'JI-M-IBLT-0051', 'JI Italian L Belt', 'standard', 265, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '578', '3468.0000', '2832.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (601, 58, 105, 'JI-M-IBLT-0060', 'JI Italian L Belt', 'standard', 287, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (602, 58, 105, 'JI-M-IBLT-0060', 'JI Italian L Belt', 'standard', 286, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (603, 58, 104, 'JI-M-IBLT-0059', 'JI Italian L Belt', 'standard', 285, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (604, 58, 104, 'JI-M-IBLT-0059', 'JI Italian L Belt', 'standard', 284, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (605, 58, 103, 'JI-M-IBLT-0058', 'JI Italian L Belt', 'standard', 283, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '578', '3468.0000', '2832.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (606, 58, 102, 'JI-M-IBLT-0057', 'JI Italian L Belt', 'standard', 282, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '578', '3468.0000', '2832.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (607, 58, 101, 'JI-M-IBLT-0056', 'JI Italian L Belt', 'standard', 281, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (608, 58, 101, 'JI-M-IBLT-0056', 'JI Italian L Belt', 'standard', 280, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '578', '3468.0000', '2832.0000', '', '1050.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (609, 59, 121, 'JI-M-IBLT-0065', 'JI Italian L Belt', 'standard', 327, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (610, 59, 120, 'JI-M-IBLT-0064', 'JI Italian L Belt', 'standard', 326, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '584.5', '3507.0000', '1593.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (611, 59, 119, 'JI-M-IBLT-0063', 'JI Italian L Belt', 'standard', 325, '250.0000', '295.0000', '12.0000', 1, '540.0000', 5, '18%', '595', '7140.0000', '3540.0000', '', '890.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '270.0000', '270.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (612, 59, 107, 'JI-M-IBLT-0062', 'JI Italian L Belt', 'standard', 291, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (613, 59, 107, 'JI-M-IBLT-0062', 'JI Italian L Belt', 'standard', 290, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (614, 59, 106, 'JI-M-IBLT-0061', 'JI Italian L Belt', 'standard', 289, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (615, 59, 106, 'JI-M-IBLT-0061', 'JI Italian L Belt', 'standard', 288, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '578', '1734.0000', '1416.0000', '', '1050.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (616, 60, 140, 'JI-M-IBLT-0073', 'JI Italian L Belt', 'standard', 375, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '747.5', '4485.0000', '2655.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (617, 60, 140, 'JI-M-IBLT-0073', 'JI Italian L Belt', 'standard', 374, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '747.5', '4485.0000', '2655.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (618, 60, 140, 'JI-M-IBLT-0073', 'JI Italian L Belt', 'standard', 373, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '747.5', '4485.0000', '2655.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (619, 60, 139, 'JI-M-IBLT-0072', 'JI Italian L Belt', 'standard', 372, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '747.5', '4485.0000', '2655.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (620, 60, 139, 'JI-M-IBLT-0072', 'JI Italian L Belt', 'standard', 371, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '747.5', '4485.0000', '2655.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (621, 60, 139, 'JI-M-IBLT-0072', 'JI Italian L Belt', 'standard', 370, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '747.5', '4485.0000', '2655.0000', '', '1190.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (622, 60, 127, 'JI-M-IBLT-0071', 'JI Italian L Belt', 'standard', 333, '300.0000', '354.0000', '6.0000', 1, '324.0000', 5, '18%', '496', '2976.0000', '2124.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '162.0000', '162.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (623, 60, 126, 'JI-M-IBLT-0070', 'JI Italian L Belt', 'standard', 332, '300.0000', '354.0000', '6.0000', 1, '324.0000', 5, '18%', '496', '2976.0000', '2124.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '162.0000', '162.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (624, 60, 125, 'JI-M-IBLT-0069', 'JI Italian L Belt', 'standard', 331, '300.0000', '354.0000', '2.0000', 1, '108.0000', 5, '18%', '636', '1272.0000', '708.0000', '', '990.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (625, 60, 124, 'JI-M-IBLT-0068', 'JI Italian L Belt', 'standard', 330, '300.0000', '354.0000', '2.0000', 1, '108.0000', 5, '18%', '636', '1272.0000', '708.0000', '', '990.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (626, 60, 123, 'JI-M-IBLT-0067', 'JI Italian L Belt', 'standard', 329, '300.0000', '354.0000', '9.0000', 1, '486.0000', 5, '18%', '636', '5724.0000', '3186.0000', '', '990.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (627, 60, 122, 'JI-M-IBLT-0066', 'JI Italian L Belt', 'standard', 328, '300.0000', '354.0000', '11.0000', 1, '594.0000', 5, '18%', '636', '6996.0000', '3894.0000', '', '990.0000', NULL, 2, 'PCS', '11.0000', NULL, '9%', '297.0000', '297.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (628, 61, 57, 'JI-M-BBI-0013', 'JI Ind Brass Bkl', 'standard', 162, '450.0000', '531.0000', '3.0000', 1, '243.0000', 5, '18%', '919', '2757.0000', '1593.0000', '', '1450.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (629, 61, 56, 'JI-M-BBI-0012', 'JI Ind Brass Bkl', 'standard', 161, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (630, 61, 55, 'JI-M-BBI-0011', 'JI Ind Brass Bkl', 'standard', 160, '450.0000', '531.0000', '3.0000', 1, '243.0000', 5, '18%', '919', '2757.0000', '1593.0000', '', '1450.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (631, 61, 54, 'JI-M-BBI-0010', 'JI Ind Brass Bkl', 'standard', 159, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (632, 61, 53, 'JI-M-BBI-0009', 'JI Ind Brass Bkl', 'standard', 158, '450.0000', '531.0000', '2.0000', 1, '162.0000', 5, '18%', '919', '1838.0000', '1062.0000', '', '1450.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '81.0000', '81.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (633, 61, 52, 'JI-M-BBI-0008', 'JI Ind Brass Bkl', 'standard', 157, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (634, 61, 51, 'JI-M-BBI-0007', 'JI Ind Brass Bkl', 'standard', 156, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (635, 61, 50, 'JI-M-BBI-0006', 'JI Ind Brass Bkl', 'standard', 155, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (636, 61, 49, 'JI-M-BBI-0005', 'JI Ind Brass Bkl', 'standard', 154, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (637, 61, 48, 'JI-M-BBI-0004', 'JI Ind Brass BKL', 'standard', 153, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (638, 61, 47, 'JI-M-BBI-0003', 'JI Ind Brass Bkl', 'standard', 152, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (639, 61, 46, 'JI-M-BBI-0002', 'JI Ind Brass Bkl', 'standard', 151, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (640, 61, 37, 'JI-M-BBI-0001', 'JI Ind Brass Bkl', 'standard', 119, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '919', '5514.0000', '3186.0000', '', '1450.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (641, 62, 115, 'JI-B-BBLT-0001', 'JI Boy Belt', 'standard', 309, '200.0000', '236.0000', '2.0000', 1, '72.0000', 5, '18%', '204', '408.0000', '472.0000', '', '440.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '36.0000', '36.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (642, 62, 115, 'JI-B-BBLT-0001', 'JI Boy Belt', 'standard', 311, '200.0000', '236.0000', '5.0000', 1, '180.0000', 5, '18%', '204', '1020.0000', '1180.0000', '', '440.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '90.0000', '90.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (643, 62, 115, 'JI-B-BBLT-0001', 'JI Boy Belt', 'standard', 308, '200.0000', '236.0000', '2.0000', 1, '72.0000', 5, '18%', '204', '408.0000', '472.0000', '', '440.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '36.0000', '36.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (644, 62, 116, 'JI-B-BBLT-0002', 'JI Boy Belt', 'standard', 313, '200.0000', '236.0000', '3.0000', 1, '108.0000', 5, '18%', '204', '612.0000', '708.0000', '', '440.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (645, 62, 116, 'JI-B-BBLT-0002', 'JI Boy Belt', 'standard', 317, '200.0000', '236.0000', '3.0000', 1, '108.0000', 5, '18%', '204', '612.0000', '708.0000', '', '440.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (646, 62, 116, 'JI-B-BBLT-0002', 'JI Boy Belt', 'standard', 315, '200.0000', '236.0000', '2.0000', 1, '72.0000', 5, '18%', '204', '408.0000', '472.0000', '', '440.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '36.0000', '36.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (647, 62, 117, 'JI-B-BBLT-0003', 'JI Beby Belt', 'standard', 320, '200.0000', '236.0000', '4.0000', 1, '144.0000', 5, '18%', '204', '816.0000', '944.0000', '', '440.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '72.0000', '72.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (648, 62, 117, 'JI-B-BBLT-0003', 'JI Beby Belt', 'standard', 319, '200.0000', '236.0000', '3.0000', 1, '108.0000', 5, '18%', '204', '612.0000', '708.0000', '', '440.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (649, 62, 118, 'JI-B-BBLT-0004', 'JI Boy Belt', 'standard', 323, '200.0000', '236.0000', '1.0000', 1, '36.0000', 5, '18%', '204', '204.0000', '236.0000', '', '440.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '18.0000', '18.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (650, 62, 118, 'JI-B-BBLT-0004', 'JI Boy Belt', 'standard', 324, '200.0000', '236.0000', '1.0000', 1, '36.0000', 5, '18%', '204', '204.0000', '236.0000', '', '440.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '18.0000', '18.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (651, 62, 118, 'JI-B-BBLT-0004', 'JI Boy Belt', 'standard', 322, '200.0000', '236.0000', '4.0000', 1, '144.0000', 5, '18%', '204', '816.0000', '944.0000', '', '440.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '72.0000', '72.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (652, 63, 41, 'JI-M-ILB-0003', 'JI Indian L Belt', 'standard', 135, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (653, 63, 41, 'JI-M-ILB-0003', 'JI Indian L Belt', 'standard', 134, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (654, 63, 41, 'JI-M-ILB-0003', 'JI Indian L Belt', 'standard', 133, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (655, 63, 41, 'JI-M-ILB-0003', 'JI Indian L Belt', 'standard', 132, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (656, 63, 40, 'JI-M-ILB-0002', 'JI Indian L Belt', 'standard', 131, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (657, 63, 40, 'JI-M-ILB-0002', 'JI Indian L Belt', 'standard', 130, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '294.5', '3534.0000', '3186.0000', '', '560.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (658, 63, 40, 'JI-M-ILB-0002', 'JI Indian L Belt', 'standard', 129, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (659, 63, 39, 'JI-M-ILB-0001', 'JI Indian L Belt', 'standard', 128, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (660, 63, 39, 'JI-M-ILB-0001', 'JI Indian L Belt', 'standard', 127, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (661, 63, 39, 'JI-M-ILB-0001', 'JI Indian L Belt', 'standard', 126, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (662, 63, 39, 'JI-M-ILB-0001', 'JI Indian L Belt', 'standard', 125, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (663, 64, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 'standard', 112, '650.0000', '767.0000', '6.0000', 1, '702.0000', 5, '18%', '1083', '6498.0000', '4602.0000', '', '1850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '351.0000', '351.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (664, 64, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 'standard', 113, '650.0000', '767.0000', '12.0000', 1, '1404.0000', 5, '18%', '1083', '12996.0000', '9204.0000', '', '1850.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '702.0000', '702.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (665, 64, 36, 'JI-M-ISB-0001', 'JI Italian Stone Bkl', 'standard', 114, '650.0000', '767.0000', '6.0000', 1, '702.0000', 5, '18%', '1083', '6498.0000', '4602.0000', '', '1850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '351.0000', '351.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (666, 64, 34, 'JI-M-IEL-0001', 'JI Italian Ltd edition ', 'standard', 93, '675.0000', '796.5000', '6.0000', 1, '729.0000', 5, '18%', '1143.5', '6861.0000', '4779.0000', '', '1940.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '364.5000', '364.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (667, 64, 34, 'JI-M-IEL-0001', 'JI Italian Ltd edition ', 'standard', 94, '675.0000', '796.5000', '6.0000', 1, '729.0000', 5, '18%', '1143.5', '6861.0000', '4779.0000', '', '1940.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '364.5000', '364.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (668, 64, 97, 'JI-M-IEL-0002', 'JI Italian Ltd edition ', 'standard', 275, '300.0000', '354.0000', '12.0000', 1, '648.0000', 5, '18%', '876', '10512.0000', '4248.0000', '', '1230.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (669, 64, 97, 'JI-M-IEL-0002', 'JI Italian Ltd edition ', 'standard', 276, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '867', '5202.0000', '2478.0000', '', '1230.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (670, 64, 138, 'JI-M-IEL-0003', 'JI Italian Ltd edition ', 'standard', 368, '400.0000', '472.0000', '12.0000', 1, '864.0000', 5, '18%', '1178', '14136.0000', '5664.0000', '', '1650.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '432.0000', '432.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (671, 64, 33, 'JI-M-ISM-0001', 'JI Italian Steel Bkl', 'standard', 91, '700.0000', '826.0000', '6.0000', 1, '756.0000', 5, '18%', '974', '5844.0000', '4956.0000', '', '1800.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (672, 64, 33, 'JI-M-ISM-0001', 'JI Italian Steel Bkl', 'standard', 92, '700.0000', '826.0000', '6.0000', 1, '756.0000', 5, '18%', '974', '5844.0000', '4956.0000', '', '1800.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (673, 64, 72, 'JI-M-ISM-0002', 'JI Italian Steel BKL', 'standard', 195, '625.0000', '737.5000', '6.0000', 1, '675.0000', 5, '18%', '1062.5', '6375.0000', '4425.0000', '', '1800.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (674, 64, 32, 'JI-M-IBS-0001', 'JI Italian Brass Bkl', 'standard', 88, '600.0000', '708.0000', '6.0000', 1, '648.0000', 5, '18%', '1142', '6852.0000', '4248.0000', '', '1800.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (675, 64, 32, 'JI-M-IBS-0001', 'JI Italian Brass Bkl', 'standard', 89, '550.0000', '649.0000', '12.0000', 1, '1188.0000', 5, '18%', '1151', '13812.0000', '7788.0000', '', '1800.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '594.0000', '594.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (676, 64, 32, 'JI-M-IBS-0001', 'JI Italian Brass Bkl', 'standard', 90, '550.0000', '649.0000', '6.0000', 1, '594.0000', 5, '18%', '1151', '6906.0000', '3894.0000', '', '1800.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '297.0000', '297.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (677, 65, 4, 'G7-M-OB-000001', 'G7 Office Bag', 'standard', 8, '1530.0000', '1805.4000', '3.0000', 1, '826.2000', 5, '18%', '1694.6', '5083.8000', '5416.2000', '', '3500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '413.1000', '413.1000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (678, 65, 4, 'G7-M-OB-000001', 'G7 Office Bag', 'standard', 10, '1530.0000', '1805.4000', '3.0000', 1, '826.2000', 5, '18%', '1694.6', '5083.8000', '5416.2000', '', '3500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '413.1000', '413.1000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (679, 65, 4, 'G7-M-OB-000001', 'G7 Office Bag', 'standard', 9, '1530.0000', '1805.4000', '3.0000', 1, '826.2000', 5, '18%', '1694.60', '5083.8000', '5416.2000', '', '3500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '413.1000', '413.1000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (680, 65, 5, 'G7-M-OB-000002', 'G7 Office Bag', 'standard', 12, '1430.0000', '1687.4000', '3.0000', 1, '772.2000', 5, '18%', '1662.6', '4987.8000', '5062.2000', '', '3350.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '386.1000', '386.1000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (681, 65, 5, 'G7-M-OB-000002', 'G7 Office Bag', 'standard', 11, '1430.0000', '1687.4000', '3.0000', 1, '772.2000', 5, '18%', '1662.6', '4987.8000', '5062.2000', '', '3350.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '386.1000', '386.1000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (682, 65, 7, 'G7-M-SB-000001', 'G7 Side Bag', 'standard', 14, '750.0000', '885.0000', '3.0000', 1, '405.0000', 5, '18%', '1005', '3015.0000', '2655.0000', '', '1890.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (683, 65, 8, 'G7-M-SB-000002', 'G7 Side Bag', 'standard', 15, '700.0000', '826.0000', '3.0000', 1, '378.0000', 5, '18%', '1014', '3042.0000', '2478.0000', '', '1840.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (684, 65, 9, 'G7-M-SB-000003', 'G7 Side Bag', 'standard', 16, '700.0000', '826.0000', '3.0000', 1, '378.0000', 5, '18%', '1014', '3042.0000', '2478.0000', '', '1840.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (701, 67, 163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 'standard', 403, '2351.6949', '2775.0000', '5.0000', 1, '2116.5255', 5, '18%', '1475', '7375.0000', '13875.0000', '', '4250.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '1058.2628', '1058.2628', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (702, 67, 163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 'standard', 402, '2351.6949', '2775.0000', '5.0000', 1, '2116.5255', 5, '18%', '1475', '7375.0000', '13875.0000', '', '4250.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '1058.2628', '1058.2628', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (703, 67, 163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 'standard', 401, '2351.6949', '2775.0000', '5.0000', 1, '2116.5255', 5, '18%', '1475', '7375.0000', '13875.0000', '', '4250.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '1058.2628', '1058.2628', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (704, 68, 149, 'JI-M-IEL-0007', 'JI Italian Limited edition', 'standard', 387, '350.0000', '413.0000', '1.0000', 1, '63.0000', 5, '18%', '837', '837.0000', '413.0000', '', '1250.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '31.5000', '31.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (705, 68, 149, 'JI-M-IEL-0007', 'JI Italian Limited edition', 'standard', 387, '350.0000', '413.0000', '1.0000', 1, '63.0000', 5, '18%', '837', '837.0000', '413.0000', '', '1250.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '31.5000', '31.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (706, 69, 154, 'JI-W-WLBLT-0005', 'JI Leather Belt', 'standard', 392, '300.0000', '354.0000', '6.0000', 1, '324.0000', 5, '18%', '596', '3576.0000', '2124.0000', '', '950.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '162.0000', '162.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (707, 70, 152, 'JI-W-WLBLT-0003', 'JI Leather Belt', 'standard', 390, '350.0000', '413.0000', '2.0000', 1, '126.0000', 5, '18%', '487', '974.0000', '826.0000', '', '900.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '63.0000', '63.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (708, 70, 151, 'JI-W-WLBLT-0002', 'JI Leather Belt', 'standard', 389, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '437', '1311.0000', '1239.0000', '', '850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (709, 70, 155, 'JI-W-WLBLT-0006', 'JI Leather Belt', 'standard', 393, '250.0000', '295.0000', '3.0000', 1, '135.0000', 5, '18%', '555', '1665.0000', '885.0000', '', '850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '67.5000', '67.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (710, 70, 150, 'JI-W-WLBLT-0001', 'JI  Leather Belt', 'standard', 388, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '455', '2730.0000', '1770.0000', '', '750.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (711, 70, 157, 'JI-W-WLBLT-0008', 'JI Leather Belt', 'standard', 395, '250.0000', '295.0000', '4.0000', 1, '180.0000', 5, '18%', '455', '1820.0000', '1180.0000', '', '750.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '90.0000', '90.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (712, 70, 158, 'JI-W-WLBLT-0009', 'JI Leather Belt', 'standard', 396, '250.0000', '295.0000', '2.0000', 1, '90.0000', 5, '18%', '255', '510.0000', '590.0000', '', '550.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '45.0000', '45.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (713, 70, 159, 'JI-W-WLBLT-0010', 'JI Leather Belt', 'standard', 397, '250.0000', '295.0000', '10.0000', 1, '450.0000', 5, '18%', '335', '3350.0000', '2950.0000', '', '630.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '225.0000', '225.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (714, 70, 160, 'JI-W-WLBLT-0011', 'JI Leather Belt', 'standard', 398, '250.0000', '295.0000', '15.0000', 1, '675.0000', 5, '18%', '255', '3825.0000', '4425.0000', '', '550.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (715, 70, 161, 'JI-W-WLBLT-0012', 'JI Leather Belt', 'standard', 399, '225.0000', '265.5000', '15.0000', 1, '607.5000', 5, '18%', '414.5', '6217.5000', '3982.5000', '', '680.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '303.7500', '303.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (716, 70, 156, 'JI-W-WLBLT-0007', 'JI Leather Belt', 'standard', 394, '250.0000', '295.0000', '2.0000', 1, '90.0000', 5, '18%', '555', '1110.0000', '590.0000', '', '850.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '45.0000', '45.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (717, 70, 153, 'JI-W-WLBLT-0004', 'JI Leather Belt', 'standard', 391, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '537', '1611.0000', '1239.0000', '', '950.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (718, 70, 162, 'JI-W-WLBLT-0013', 'JI Leather Belt', 'standard', 400, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '586.5', '3519.0000', '2301.0000', '', '970.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (719, 71, 148, 'JI-M-IB-0001', 'JI Imported Belt', 'standard', 386, '450.0000', '531.0000', '12.0000', 1, '972.0000', 5, '18%', '829', '9948.0000', '6372.0000', '', '1360.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '486.0000', '486.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (720, 71, 148, 'JI-M-IB-0001', 'JI Imported Belt', 'standard', 386, '450.0000', '531.0000', '12.0000', 1, '972.0000', 5, '18%', '829', '9948.0000', '6372.0000', '', '1360.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '486.0000', '486.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (721, 71, 148, 'JI-M-IB-0001', 'JI Imported Belt', 'standard', 386, '450.0000', '531.0000', '9.0000', 1, '729.0000', 5, '18%', '829', '7461.0000', '4779.0000', '', '1360.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '364.5000', '364.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (722, 71, 146, 'JI-M-IEL-0005', 'Italian Limited edition', 'standard', 384, '425.0000', '501.5000', '3.0000', 1, '229.5000', 5, '18%', '988.5', '2965.5000', '1504.5000', '', '1490.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '114.7500', '114.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (723, 71, 145, 'JI-M-IEL-0004', 'Italian Limited edition ', 'standard', 383, '425.0000', '501.5000', '5.0000', 1, '382.5000', 5, '18%', '988.5', '4942.5000', '2507.5000', '', '1490.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '191.2500', '191.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (724, 71, 147, 'JI-M-IEL-0006', 'Italian Limited edition', 'standard', 385, '750.0000', '885.0000', '5.0000', 1, '675.0000', 5, '18%', '1105', '5525.0000', '4425.0000', '', '1990.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (725, 71, 147, 'JI-M-IEL-0006', 'Italian Limited edition', 'standard', 385, '750.0000', '885.0000', '5.0000', 1, '675.0000', 5, '18%', '1105', '5525.0000', '4425.0000', '', '1990.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (726, 71, 144, 'JI-M-CB-0001', 'JI Cotton Belt', 'standard', 382, '250.0000', '295.0000', '10.0000', 1, '450.0000', 5, '18%', '605', '6050.0000', '2950.0000', '', '900.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '225.0000', '225.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (727, 71, 144, 'JI-M-CB-0001', 'JI Cotton Belt', 'standard', 381, '250.0000', '295.0000', '10.0000', 1, '450.0000', 5, '18%', '605', '6050.0000', '2950.0000', '', '900.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '225.0000', '225.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (728, 72, 191, 'G7-M-OB-000004-4', 'G7 Office Bag-TAN', 'standard', 0, '1850.0000', '2183.0000', '3.0000', 1, '999.0000', 5, '18%', '1667', '5001.0000', '6549.0000', '', '3850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '499.5000', '499.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (729, 72, 189, 'G7-M-OB-000004-3', 'G7 Office Bag-BROWN', 'standard', 0, '1850.0000', '2183.0000', '3.0000', 1, '999.0000', 5, '18%', '1667', '5001.0000', '6549.0000', '', '3850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '499.5000', '499.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (730, 72, 190, 'G7-M-OB-000004-1', 'G7 Office Bag-BLACK', 'standard', 0, '1850.0000', '2183.0000', '3.0000', 1, '999.0000', 5, '18%', '1667', '5001.0000', '6549.0000', '', '3850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '499.5000', '499.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (731, 72, 187, 'G7-M-OB-000003-1', 'G7 Office Bag-BLACK', 'standard', 0, '1500.0000', '1770.0000', '3.0000', 1, '810.0000', 5, '18%', '1080', '3240.0000', '5310.0000', '', '2850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (732, 72, 186, 'G7-M-OB-000003-3', 'G7 Office Bag-BROWN', 'standard', 0, '1500.0000', '1770.0000', '3.0000', 1, '810.0000', 5, '18%', '1080', '3240.0000', '5310.0000', '', '2850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (733, 72, 188, 'G7-M-OB-000003-4', 'G7 Office Bag-TAN', 'standard', 0, '1500.0000', '1770.0000', '3.0000', 1, '810.0000', 5, '18%', '1080', '3240.0000', '5310.0000', '', '2850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (734, 73, 182, 'JI-M-IBLT-0092-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '300.0000', '354.0000', '3.0000', 1, '162.0000', 5, '18%', '596', '1788.0000', '1062.0000', '', '950.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '81.0000', '81.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (735, 73, 183, 'JI-M-IBLT-0093-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '300.0000', '354.0000', '2.0000', 1, '108.0000', 5, '18%', '596', '1192.0000', '708.0000', '', '950.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (736, 73, 181, 'JI-M-IBLT-0091-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '300.0000', '354.0000', '4.0000', 1, '216.0000', 5, '18%', '596', '2384.0000', '1416.0000', '', '950.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (737, 73, 180, 'JI-M-IBLT-0090-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '300.0000', '354.0000', '12.0000', 1, '648.0000', 5, '18%', '636', '7632.0000', '4248.0000', '', '990.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (738, 73, 167, 'JI-M-IBLT-0077-26', 'JI Italian L Belt-HONEY', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (739, 73, 169, 'JI-M-IBLT-0079-23', 'JI Italian L Belt-MAGIC', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (740, 73, 168, 'JI-M-IBLT-0078-36', 'JI Italian L Belt-BALI', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (741, 73, 169, 'JI-M-IBLT-0079-23', 'JI Italian L Belt-MAGIC', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (742, 73, 167, 'JI-M-IBLT-0077-26', 'JI Italian L Belt-HONEY', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (743, 73, 168, 'JI-M-IBLT-0078-36', 'JI Italian L Belt-BALI', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (744, 73, 170, 'JI-M-IBLT-0080-57', 'JI Italian L Belt-CROCO', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (745, 73, 171, 'JI-M-IBLT-0081-58', 'JI Italian L Belt-PLAIN', 'standard', 0, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '484.5', '2907.0000', '1593.0000', '', '750.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (746, 74, 173, 'JI-M-IBLT-0083-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '225.0000', '265.5000', '5.0000', 1, '202.5000', 5, '18%', '484.5', '2422.5000', '1327.5000', '', '750.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '101.2500', '101.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (747, 74, 175, 'JI-M-IBLT-0085-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '484.5', '2907.0000', '1593.0000', '', '750.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (748, 74, 176, 'JI-M-IBLT-0086-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (749, 74, 179, 'JI-M-IBLT-0089-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (750, 74, 177, 'JI-M-IBLT-0087-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (751, 74, 178, 'JI-M-IBLT-0088-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (752, 74, 174, 'JI-M-IBLT-0084-60', 'JI Italian L Belt-TOBACCO', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (753, 74, 172, 'JI-M-IBLT-0082-59', 'JI Italian L Belt-GRACE', 'standard', 0, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '555', '3330.0000', '1770.0000', '', '850.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (754, 75, 165, 'JI-M-ISM-0003', 'JI Italian Steel BKL', 'standard', 405, '700.0000', '826.0000', '72.0000', 1, '9072.0000', 5, '18%', '1024', '73728.0000', '59472.0000', '', '1850.0000', NULL, 2, 'PCS', '72.0000', NULL, '9%', '4536.0000', '4536.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (755, 75, 166, 'JI-M-IBLT-0076', 'JI Italian L Belt', 'standard', 406, '400.0000', '472.0000', '21.0000', 1, '1512.0000', 5, '18%', '778', '16338.0000', '9912.0000', '', '1250.0000', NULL, 2, 'PCS', '21.0000', NULL, '9%', '756.0000', '756.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (756, 75, 166, 'JI-M-IBLT-0076', 'JI Italian L Belt', 'standard', 407, '400.0000', '472.0000', '15.0000', 1, '1080.0000', 5, '18%', '778', '11670.0000', '7080.0000', '', '1250.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '540.0000', '540.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (757, 76, 10, 'G7-M-LWLT-0001', 'G7 Leather Wallet', 'standard', 17, '350.0000', '413.0000', '5.0000', 1, '315.0000', 5, '18%', '737', '3685.0000', '2065.0000', '', '1150.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '157.5000', '157.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (758, 76, 10, 'G7-M-LWLT-0001', 'G7 Leather Wallet', 'standard', 21, '350.0000', '413.0000', '2.0000', 1, '126.0000', 5, '18%', '737', '1474.0000', '826.0000', '', '1150.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '63.0000', '63.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (759, 76, 10, 'G7-M-LWLT-0001', 'G7 Leather Wallet', 'standard', 20, '350.0000', '413.0000', '5.0000', 1, '315.0000', 5, '18%', '737', '3685.0000', '2065.0000', '', '1150.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '157.5000', '157.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (760, 76, 10, 'G7-M-LWLT-0001', 'G7 Leather Wallet', 'standard', 19, '350.0000', '413.0000', '5.0000', 1, '315.0000', 5, '18%', '737', '3685.0000', '2065.0000', '', '1150.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '157.5000', '157.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (761, 76, 10, 'G7-M-LWLT-0001', 'G7 Leather Wallet', 'standard', 18, '350.0000', '413.0000', '4.0000', 1, '252.0000', 5, '18%', '737', '2948.0000', '1652.0000', '', '1150.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '126.0000', '126.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (762, 77, 243, 'G7-W--WLB-0011', 'G7 Ladies Bag ', 'standard', 0, '1752.0000', '2067.3600', '6.0000', 1, '1892.1600', 5, '18%', '1182.64', '7095.8400', '12404.1600', '', '3250.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '946.0800', '946.0800', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (763, 77, 245, 'G7-W-WLB-0012', 'G7 Ladies Bag ', 'standard', 0, '2401.0000', '2833.1800', '15.0000', 1, '6482.7000', 5, '18%', '1416.82', '21252.3000', '42497.7000', '', '4250.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '3241.3500', '3241.3500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (764, 78, 232, 'G7-M-TB-0001', 'G7 Travelling Bag', 'standard', 0, '3000.0000', '3540.0000', '2.0000', 1, '1080.0000', 5, '18%', '460', '920.0000', '7080.0000', '', '4000.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '540.0000', '540.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (765, 78, 237, 'G7-M-TB-0002', 'G7 Travelling Bag', 'standard', 0, '3354.0000', '3957.7200', '2.0000', 1, '1207.4400', 5, '18%', '542.28', '1084.5600', '7915.4400', '', '4500.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '603.7200', '603.7200', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (766, 78, 238, 'G7-M-JKT-0001', 'G7 Mens Jacket', 'standard', 0, '4534.0000', '5350.1200', '1.0000', 1, '816.1200', 5, '18%', '649.88', '649.8800', '5350.1200', '', '6000.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '408.0600', '408.0600', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (767, 78, 239, 'G7-B-BJKT-0001', 'G7 Kids Jacket', 'standard', 0, '4180.0000', '4932.4000', '1.0000', 1, '752.4000', 5, '18%', '567.6', '567.6000', '4932.4000', '', '5500.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '376.2000', '376.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (780, 79, 223, 'G7-M-LWLT-0018-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '518', '2072.0000', '1888.0000', '', '990.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (781, 79, 224, 'G7-M-LWLT-0019-68', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '518', '2072.0000', '1888.0000', '', '990.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (782, 79, 212, 'G7-M-LWLT-0008-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '1.0000', 1, '72.0000', 5, '18%', '518', '518.0000', '472.0000', '', '990.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '36.0000', '36.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (783, 79, 216, 'G7-M-LWLT-0011-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '518', '2072.0000', '1888.0000', '', '990.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (784, 79, 215, 'G7-M-LWLT-0010-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '518', '2072.0000', '1888.0000', '', '990.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (785, 79, 217, 'G7-M-LWLT-0012-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '5.0000', 1, '360.0000', 5, '18%', '518', '2590.0000', '2360.0000', '', '990.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '180.0000', '180.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (786, 79, 222, 'G7-M-LWLT-0017-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '2.0000', 1, '144.0000', 5, '18%', '518', '1036.0000', '944.0000', '', '990.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '72.0000', '72.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (787, 79, 221, 'G7-M-LWLT-0016-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '518', '2072.0000', '1888.0000', '', '990.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (788, 79, 220, 'G7-M-LWLT-0015-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '5.0000', 1, '360.0000', 5, '18%', '518', '2590.0000', '2360.0000', '', '990.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '180.0000', '180.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (789, 79, 219, 'G7-M-LWLT-0014-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '5.0000', 1, '360.0000', 5, '18%', '518', '2590.0000', '2360.0000', '', '990.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '180.0000', '180.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (790, 79, 218, 'G7-M-LWLT-0013-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '2.0000', 1, '144.0000', 5, '18%', '518', '1036.0000', '944.0000', '', '990.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '72.0000', '72.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (791, 79, 214, 'G7-M-LWLT-0009-61', 'G7 Leather Wallet-GIL', 'standard', 0, '400.0000', '472.0000', '2.0000', 1, '144.0000', 5, '18%', '518', '1036.0000', '944.0000', '', '990.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '72.0000', '72.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (805, 80, 225, 'G7-M-PWLT-0001-62', 'G7 Passport Wallet-PARPAL', 'standard', 0, '275.0000', '324.5000', '6.0000', 1, '297.0000', 5, '18%', '175.5', '1053.0000', '1947.0000', '', '500.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '148.5000', '148.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (806, 80, 210, 'G7-M-LWLT-0007-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '185.0000', '218.3000', '3.0000', 1, '99.9000', 5, '18%', '281.7', '845.1000', '654.9000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '49.9500', '49.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (807, 80, 206, 'G7-M-LWLT-0005-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '110.2542', '130.1000', '3.0000', 1, '59.5374', 5, '18%', '369.9', '1109.7000', '390.3000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '29.7687', '29.7687', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (808, 80, 211, 'G7-M-LWLT-0007-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '185.0000', '218.3000', '3.0000', 1, '99.9000', 5, '18%', '281.7', '845.1000', '654.9000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '49.9500', '49.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (809, 80, 204, 'G7-M-LWLT-0004-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '185.0000', '218.3000', '3.0000', 1, '99.9000', 5, '18%', '281.7', '845.1000', '654.9000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '49.9500', '49.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (810, 80, 203, 'G7-M-LWLT-0003-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '180.0000', '212.4000', '3.0000', 1, '97.2000', 5, '18%', '287.6', '862.8000', '637.2000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '48.6000', '48.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (811, 80, 202, 'G7-M-LWLT-0003-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '180.0000', '212.4000', '3.0000', 1, '97.2000', 5, '18%', '287.6', '862.8000', '637.2000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '48.6000', '48.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (812, 80, 208, 'G7-M-LWLT-0006-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '165.0000', '194.7000', '3.0000', 1, '89.1000', 5, '18%', '305.3', '915.9000', '584.1000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '44.5500', '44.5500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (813, 80, 201, 'G7-M-LWLT-0002-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '150.0000', '177.0000', '3.0000', 1, '81.0000', 5, '18%', '273', '819.0000', '531.0000', '', '450.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '40.5000', '40.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (814, 80, 200, 'G7-M-LWLT-0002-1', 'G7 Leather Wallet-BLACK', 'standard', 0, '150.0000', '177.0000', '3.0000', 1, '81.0000', 5, '18%', '273', '819.0000', '531.0000', '', '450.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '40.5000', '40.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (815, 80, 209, 'G7-M-LWLT-0006-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '165.0000', '194.7000', '3.0000', 1, '89.1000', 5, '18%', '305.3', '915.9000', '584.1000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '44.5500', '44.5500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (816, 80, 205, 'G7-M-LWLT-0004-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '185.0000', '218.3000', '3.0000', 1, '99.9000', 5, '18%', '281.7', '845.1000', '654.9000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '49.9500', '49.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (817, 80, 207, 'G7-M-LWLT-0005-3', 'G7 Leather Wallet-BROWN', 'standard', 0, '195.0000', '230.1000', '3.0000', 1, '105.3000', 5, '18%', '269.9', '809.7000', '690.3000', '', '500.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '52.6500', '52.6500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (818, 81, 240, 'G7-M-LWLT-0020', 'G7 Leather Wallet-08', 'standard', 0, '475.0000', '560.5000', '12.0000', 1, '1026.0000', 5, '18%', '339.5', '4074.0000', '6726.0000', '', '900.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '513.0000', '513.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (819, 81, 241, 'G7-M-LWLT-0021', 'G7 Leather Wallet-03', 'standard', 0, '475.0000', '560.5000', '12.0000', 1, '1026.0000', 5, '18%', '429.5', '5154.0000', '6726.0000', '', '990.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '513.0000', '513.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (820, 81, 242, 'G7-M-LWLT-0022', 'G7 Leather Wallet-05', 'standard', 0, '425.0000', '501.5000', '12.0000', 1, '918.0000', 5, '18%', '468.5', '5622.0000', '6018.0000', '', '970.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '459.0000', '459.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (821, 81, 244, 'G7-M-LWLT-0023', 'G7 Leather Wallet-10', 'standard', 0, '375.0000', '442.5000', '12.0000', 1, '810.0000', 5, '18%', '407.5', '4890.0000', '5310.0000', '', '850.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (822, 81, 246, 'G7-M-LWLT-0024', 'G7 Leather Wallet-11', 'standard', 0, '375.0000', '442.5000', '12.0000', 1, '810.0000', 5, '18%', '747.5', '8970.0000', '5310.0000', '', '1190.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (823, 81, 250, 'G7-M-LWLT-0025', 'G7 Leather Wallet-07', 'standard', 0, '350.0000', '413.0000', '12.0000', 1, '756.0000', 5, '18%', '377', '4524.0000', '4956.0000', '', '790.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (824, 81, 247, 'G7-M-LWLT-0026', 'G7 Leather Wallet-09', 'standard', 0, '350.0000', '413.0000', '12.0000', 1, '756.0000', 5, '18%', '477', '5724.0000', '4956.0000', '', '890.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (825, 81, 248, 'G7-M-LWLT-0027', 'G7 Leather Wallet-01', 'standard', 0, '275.0000', '324.5000', '12.0000', 1, '594.0000', 5, '18%', '325.5', '3906.0000', '3894.0000', '', '650.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '297.0000', '297.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (826, 81, 249, 'G7-M-LWLT-0028', 'G7 Leather Wallet-031', 'standard', 0, '285.0000', '336.3000', '12.0000', 1, '615.6000', 5, '18%', '313.7', '3764.4000', '4035.6000', '', '650.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '307.8000', '307.8000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (827, 81, 251, 'G7-M-SLP-0001', 'G7 Slipper', 'standard', 0, '850.0000', '1003.0000', '4.0000', 1, '612.0000', 5, '18%', '987', '3948.0000', '4012.0000', '', '1990.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '306.0000', '306.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (828, 81, 252, 'G7-M-SLP-0002', 'G7 Slipper', 'standard', 0, '1010.0000', '1191.8000', '4.0000', 1, '727.2000', 5, '18%', '798.2', '3192.8000', '4767.2000', '', '1990.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '363.6000', '363.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (829, 82, 226, 'G7-W-WLB-0002', 'G7 Ladies Bag ', 'standard', 0, '485.0000', '572.3000', '10.0000', 1, '873.0000', 5, '18%', '277.7', '2777.0000', '5723.0000', '', '850.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '436.5000', '436.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (830, 82, 227, 'G7-W-WLB-0003', 'G7 Ladies Bag', 'standard', 0, '585.0000', '690.3000', '10.0000', 1, '1053.0000', 5, '18%', '209.7', '2097.0000', '6903.0000', '', '900.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '526.5000', '526.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (831, 82, 228, 'G7-W-WLB-0004', 'G7 Ladies Bag', 'standard', 0, '650.0000', '767.0000', '10.0000', 1, '1170.0000', 5, '18%', '183', '1830.0000', '7670.0000', '', '950.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '585.0000', '585.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (832, 82, 229, 'G7-W-WLB-0005', 'G7 Ladies Bag', 'standard', 0, '850.0000', '1003.0000', '3.0000', 1, '459.0000', 5, '18%', '247', '741.0000', '3009.0000', '', '1250.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '229.5000', '229.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (833, 82, 230, 'G7-W-WLB-0006', 'G7 Ladies Bag', 'standard', 0, '950.0000', '1121.0000', '10.0000', 1, '1710.0000', 5, '18%', '329', '3290.0000', '11210.0000', '', '1450.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '855.0000', '855.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (834, 82, 231, 'G7-W-WLB-0007', 'G7 Ladies Bag', 'standard', 0, '1150.0000', '1357.0000', '6.0000', 1, '1242.0000', 5, '18%', '343', '2058.0000', '8142.0000', '', '1700.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '621.0000', '621.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (835, 82, 233, 'G7-W-WLB-0008', 'G7 Ladies Bag', 'standard', 0, '1250.0000', '1475.0000', '10.0000', 1, '2250.0000', 5, '18%', '375', '3750.0000', '14750.0000', '', '1850.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '1125.0000', '1125.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (836, 82, 235, 'G7-W-WLB-0009', 'G7 Ladies Bag', 'standard', 0, '1350.0000', '1593.0000', '3.0000', 1, '729.0000', 5, '18%', '357', '1071.0000', '4779.0000', '', '1950.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '364.5000', '364.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (837, 82, 236, 'G7-W-WLB-0010', 'G7 Ladies Bag', 'standard', 0, '1195.0000', '1410.1000', '3.0000', 1, '645.3000', 5, '18%', '339.9', '1019.7000', '4230.3000', '', '1750.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '322.6500', '322.6500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (838, 83, 195, 'JI-M-IBLT-0097-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '225.0000', '265.5000', '9.0000', 1, '364.5000', 5, '18%', '484.5', '4360.5000', '2389.5000', '', '750.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '182.2500', '182.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (839, 84, 258, 'G7-M-LWLT-0031', 'G7 Leather Wallet', 'standard', 0, '393.5000', '464.3300', '20.0000', 1, '1416.6000', 5, '18%', '685.67', '13713.4000', '9286.6000', '', '1150.0000', NULL, 2, 'PCS', '20.0000', NULL, '9%', '708.3000', '708.3000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (840, 85, 260, 'G7-M-ILB-0012', 'G7 Fancy Leather Belt', 'standard', 0, '354.0000', '417.7200', '8.0000', 1, '509.7600', 5, '18%', '332.28', '2658.2400', '3341.7600', '', '750.0000', NULL, 2, 'PCS', '8.0000', NULL, '9%', '254.8800', '254.8800', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (841, 86, 259, 'G7-M-NT-0002', 'G7 Gift Set', 'standard', 0, '370.0000', '388.5000', '5.0000', 1, '92.5000', 3, '5%', '161.5', '807.5000', '1942.5000', '', '550.0000', NULL, 2, 'PCS', '5.0000', NULL, '3%', '46.2500', '46.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (842, 86, 261, 'G7-M-NT-0001', 'G7 Neck Tie', 'standard', 0, '225.0000', '236.2500', '4.0000', 1, '45.0000', 3, '5%', '133.75', '535.0000', '945.0000', '', '370.0000', NULL, 2, 'PCS', '4.0000', NULL, '3%', '22.5000', '22.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (843, 86, 262, 'G7-M-BRP-0001', 'G7 Brooch Pin', 'standard', 0, '135.0000', '139.0500', '8.0000', 1, '32.4000', 7, '3%', '110.95', '887.6000', '1112.4000', '', '250.0000', NULL, 2, 'PCS', '8.0000', NULL, '2%', '16.2000', '16.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (844, 86, 264, 'G7-M-LPB-0001', 'G7 Laptop Bag', 'standard', 0, '3000.0000', '3540.0000', '3.0000', 1, '1620.0000', 5, '18%', '1310', '3930.0000', '10620.0000', '', '4850.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '810.0000', '810.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (845, 86, 265, 'G7-M-LPB-0002', 'G7 Laptop Bag', 'standard', 0, '3600.0000', '4248.0000', '1.0000', 1, '648.0000', 5, '18%', '1102', '1102.0000', '4248.0000', '', '5350.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (846, 86, 269, 'G7-M-LWLT-0034', 'G7 Mens Wallet', 'standard', 0, '288.0000', '339.8400', '11.0000', 1, '570.2400', 5, '18%', '410.16', '4511.7600', '3738.2400', '', '750.0000', NULL, 2, 'PCS', '11.0000', NULL, '9%', '285.1200', '285.1200', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (847, 86, 271, 'G7-M-CFL-0001', 'G7 Cuffling', 'standard', 0, '260.0000', '267.8000', '15.0000', 1, '117.0000', 7, '3%', '282.2', '4233.0000', '4017.0000', '', '550.0000', NULL, 2, 'PCS', '15.0000', NULL, '2%', '58.5000', '58.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (848, 87, 226, 'G7-W-WLB-0002', 'G7 Ladies Bag ', 'standard', 0, '485.0000', '572.3000', '0.0000', 1, '0.0000', 5, '18%', '277.7', '0.0000', '0.0000', '', '850.0000', 829, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (849, 87, 227, 'G7-W-WLB-0003', 'G7 Ladies Bag', 'standard', 0, '585.0000', '690.3000', '0.0000', 1, '0.0000', 5, '18%', '209.7', '0.0000', '0.0000', '', '900.0000', 830, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (850, 87, 228, 'G7-W-WLB-0004', 'G7 Ladies Bag', 'standard', 0, '650.0000', '767.0000', '0.0000', 1, '0.0000', 5, '18%', '183', '0.0000', '0.0000', '', '950.0000', 831, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (851, 87, 229, 'G7-W-WLB-0005', 'G7 Ladies Bag', 'standard', 0, '850.0000', '1003.0000', '0.0000', 1, '0.0000', 5, '18%', '247', '0.0000', '0.0000', '', '1250.0000', 832, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (852, 87, 230, 'G7-W-WLB-0006', 'G7 Ladies Bag', 'standard', 0, '950.0000', '1121.0000', '-2.0000', 1, '-342.0000', 5, '18%', '329', '-658.0000', '-2242.0000', '', '1450.0000', 833, 2, 'PCS', '-2.0000', NULL, '9%', '-171.0000', '-171.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (853, 87, 231, 'G7-W-WLB-0007', 'G7 Ladies Bag', 'standard', 0, '1150.0000', '1357.0000', '-1.0000', 1, '-207.0000', 5, '18%', '343', '-343.0000', '-1357.0000', '', '1700.0000', 834, 2, 'PCS', '-1.0000', NULL, '9%', '-103.5000', '-103.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (854, 87, 233, 'G7-W-WLB-0008', 'G7 Ladies Bag', 'standard', 0, '1250.0000', '1475.0000', '0.0000', 1, '0.0000', 5, '18%', '375', '0.0000', '0.0000', '', '1850.0000', 835, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (855, 87, 235, 'G7-W-WLB-0009', 'G7 Ladies Bag', 'standard', 0, '1350.0000', '1593.0000', '-2.0000', 1, '-486.0000', 5, '18%', '357', '-714.0000', '-3186.0000', '', '1950.0000', 836, 2, 'PCS', '-2.0000', NULL, '9%', '-243.0000', '-243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (856, 87, 236, 'G7-W-WLB-0010', 'G7 Ladies Bag', 'standard', 0, '1195.0000', '1410.1000', '-1.0000', 1, '-215.1000', 5, '18%', '339.9', '-339.9000', '-1410.1000', '', '1750.0000', 837, 2, 'PCS', '-1.0000', NULL, '9%', '-107.5500', '-107.5500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (857, 88, 194, 'JI-M-IBLT-0096-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '190.0000', '224.2000', '10.0000', 1, '342.0000', 5, '18%', '525.8', '5258.0000', '2242.0000', '', '750.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '171.0000', '171.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (858, 88, 274, 'G7-M-LWLT-0032-63', 'G7 Leather Wallet-SFT', 'standard', 0, '190.0000', '224.2000', '46.0000', 1, '1573.2000', 5, '18%', '225.8', '10386.8000', '10313.2000', '', '450.0000', NULL, 2, 'PCS', '46.0000', NULL, '9%', '786.6000', '786.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (859, 89, 275, 'G7-M-LWLT-0037-64', 'G7 Leather Wallet', 'standard', 0, '250.0000', '295.0000', '15.0000', 1, '675.0000', 5, '18%', '495', '7425.0000', '4425.0000', '', '790.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (860, 89, 279, 'G7-M-PWLT-0002-4', 'G7 Passport Wallet-TAN', 'standard', 0, '200.0000', '236.0000', '3.0000', 1, '108.0000', 5, '18%', '324', '972.0000', '708.0000', '', '560.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (861, 89, 277, 'G7-M-PWLT-0002-3', 'G7 Passport Wallet-BROWN', 'standard', 0, '200.0000', '236.0000', '3.0000', 1, '108.0000', 5, '18%', '324', '972.0000', '708.0000', '', '560.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (862, 89, 276, 'G7-M-PWLT-0002-1', 'G7 Passport Wallet-Black', 'standard', 0, '200.0000', '236.0000', '3.0000', 1, '108.0000', 5, '18%', '324', '972.0000', '708.0000', '', '560.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '54.0000', '54.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (866, 92, 258, 'G7-M-LWLT-0031', 'G7 Leather Wallet', 'standard', 0, '393.5000', '464.3300', '-18.0000', 1, '-1274.9400', 5, '18%', '685.67', '-12342.0600', '-8357.9400', '', '1150.0000', 839, 2, 'PCS', '-18.0000', NULL, '9%', '-637.4700', '-637.4700', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (867, 93, 226, 'G7-W-WLB-0002', 'G7 Ladies Bag ', 'standard', 0, '483.4746', '570.5000', '2.0000', 1, '174.0508', 5, '18%', '279.5', '559.0000', '1141.0000', '', '850.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '87.0254', '87.0254', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (868, 93, 228, 'G7-W-WLB-0004', 'G7 Ladies Bag', 'standard', 0, '656.7797', '775.0000', '4.0000', 1, '472.8812', 5, '18%', '175', '700.0000', '3100.0000', '', '950.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '236.4406', '236.4406', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (869, 93, 229, 'G7-W-WLB-0005', 'G7 Ladies Bag', 'standard', 0, '858.4746', '1013.0000', '10.0000', 1, '1545.2540', 5, '18%', '237', '2370.0000', '10130.0000', '', '1250.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '772.6270', '772.6270', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (870, 93, 230, 'G7-W-WLB-0006', 'G7 Ladies Bag', 'standard', 0, '957.6271', '1130.0000', '2.0000', 1, '344.7458', 5, '18%', '320', '640.0000', '2260.0000', '', '1450.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '172.3729', '172.3729', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (871, 93, 231, 'G7-W-WLB-0007', 'G7 Ladies Bag', 'standard', 0, '1161.0169', '1370.0000', '5.0000', 1, '1044.9155', 5, '18%', '330', '1650.0000', '6850.0000', '', '1700.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '522.4578', '522.4578', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (872, 93, 235, 'G7-W-WLB-0009', 'G7 Ladies Bag', 'standard', 0, '1355.9322', '1600.0000', '20.0000', 1, '4881.3560', 5, '18%', '350', '7000.0000', '32000.0000', '', '1950.0000', NULL, 2, 'PCS', '20.0000', NULL, '9%', '2440.6780', '2440.6780', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (873, 93, 281, 'G7-W-WLB-0013', 'G7 Ladies Bag', 'standard', 0, '559.3220', '660.0000', '5.0000', 1, '503.3900', 5, '18%', '590', '2950.0000', '3300.0000', '', '1250.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '251.6950', '251.6950', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (874, 93, 282, 'JI-M-SFC-0001', 'JI Steel Fitting Casual', 'standard', 0, '1038.9831', '1226.0000', '10.0000', 1, '1870.1690', 5, '18%', '324', '3240.0000', '12260.0000', '', '1550.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '935.0845', '935.0845', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (878, 95, 286, 'JI-M-ISM-0004-56', 'JI Italian Steel Bkl-KRT', 'standard', 0, '500.0000', '590.0000', '12.0000', 1, '1080.0000', 5, '18%', '960', '11520.0000', '7080.0000', '', '1550.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '540.0000', '540.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (879, 95, 288, 'JI-M-ISB-0006-65', 'JI ltalian Steel Bkl-Dimond', 'standard', 0, '1203.3898', '1420.0000', '6.0000', 1, '1299.6612', 5, '18%', '530', '3180.0000', '8520.0000', '', '1950.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '649.8306', '649.8306', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (880, 95, 289, 'JI-M-ISB-0007', 'JI Italian Steel Bkl', 'standard', 0, '650.0000', '767.0000', '12.0000', 1, '1404.0000', 5, '18%', '883', '10596.0000', '9204.0000', '', '1650.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '702.0000', '702.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (881, 95, 287, 'JI-M-ISB-0005', 'JI ltalian Steel Bkl', 'standard', 0, '1203.3898', '1420.0000', '6.0000', 1, '1299.6612', 5, '18%', '530', '3180.0000', '8520.0000', '', '1950.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '649.8306', '649.8306', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (882, 66, 134, 'JI-M-ILB-0008', 'JI Indian L Belt', 'standard', 363, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '234.5', '2814.0000', '3186.0000', '', '500.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (883, 66, 134, 'JI-M-ILB-0008', 'JI Indian L Belt', 'standard', 360, '225.0000', '265.5000', '12.0000', 1, '486.0000', 5, '18%', '234.5', '2814.0000', '3186.0000', '', '500.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (884, 66, 45, 'JI-M-ILB-0007', 'JI Indian L Belt', 'standard', 149, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '314.5', '1887.0000', '1593.0000', '', '580.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (885, 66, 45, 'JI-M-ILB-0007', 'JI Indian L Belt', 'standard', 148, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '314.5', '1887.0000', '1593.0000', '', '580.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (886, 66, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 'standard', 150, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (887, 66, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 'standard', 147, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (888, 66, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 'standard', 146, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (889, 66, 44, 'JI-M-ILB-0006', 'JI Indian L Belt', 'standard', 144, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (890, 66, 43, 'JI-M-ILB-0005', 'JI Indian L Belt', 'standard', 143, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (891, 66, 43, 'JI-M-ILB-0005', 'JI Indian L Belt', 'standard', 142, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (892, 66, 43, 'JI-M-ILB-0005', 'JI Indian L Belt', 'standard', 141, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (893, 66, 43, 'JI-M-ILB-0005', 'JI Indian L Belt', 'standard', 140, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '294.5', '1767.0000', '1593.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (894, 66, 42, 'JI-M-ILB-0004', 'JI Indian L Belt', 'standard', 139, '200.0000', '236.0000', '6.0000', 1, '216.0000', 5, '18%', '324', '1944.0000', '1416.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (895, 66, 42, 'JI-M-ILB-0004', 'JI Indian L Belt', 'standard', 138, '200.0000', '236.0000', '6.0000', 1, '216.0000', 5, '18%', '324', '1944.0000', '1416.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (896, 66, 42, 'JI-M-ILB-0004', 'JI Indian L Belt', 'standard', 137, '200.0000', '236.0000', '6.0000', 1, '216.0000', 5, '18%', '324', '1944.0000', '1416.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (897, 66, 42, 'JI-M-ILB-0004', 'JI Indian L Belt', 'standard', 136, '200.0000', '236.0000', '6.0000', 1, '216.0000', 5, '18%', '324', '1944.0000', '1416.0000', '', '560.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (898, 55, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 'standard', 250, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '658', '3948.0000', '2832.0000', '', '1130.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (899, 55, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 'standard', 249, '357.6271', '422.0000', '3.0000', 1, '193.1187', 5, '18%', '708', '2124.0000', '1266.0000', '', '1130.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '96.5594', '96.5594', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (900, 55, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 'standard', 248, '357.6271', '422.0000', '3.0000', 1, '193.1187', 5, '18%', '708', '2124.0000', '1266.0000', '', '1130.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '96.5594', '96.5594', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (901, 55, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 'standard', 247, '357.6271', '422.0000', '9.0000', 1, '579.3561', 5, '18%', '708', '6372.0000', '3798.0000', '', '1130.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '289.6781', '289.6781', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (902, 55, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 'standard', 246, '357.6271', '422.0000', '6.0000', 1, '386.2374', 5, '18%', '708', '4248.0000', '2532.0000', '', '1130.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '193.1187', '193.1187', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (903, 55, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 'standard', 245, '357.6271', '422.0000', '6.0000', 1, '386.2374', 5, '18%', '708', '4248.0000', '2532.0000', '', '1130.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '193.1187', '193.1187', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (904, 55, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 'standard', 244, '357.6271', '422.0000', '6.0000', 1, '386.2374', 5, '18%', '708', '4248.0000', '2532.0000', '', '1130.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '193.1187', '193.1187', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (905, 55, 85, 'JI-M-IBLT-0045', 'JI Italian L Belt', 'standard', 243, '357.6271', '422.0000', '9.0000', 1, '579.3561', 5, '18%', '708', '6372.0000', '3798.0000', '', '1130.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '289.6781', '289.6781', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (906, 55, 83, 'JI-M-IBLT-0044', 'JI Italian L Belt', 'standard', 235, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '637.5', '3825.0000', '2655.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (907, 55, 83, 'JI-M-IBLT-0044', 'JI Italian L Belt', 'standard', 234, '375.0000', '442.5000', '12.0000', 1, '810.0000', 5, '18%', '637.5', '7650.0000', '5310.0000', '', '1080.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (908, 55, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 'standard', 233, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (909, 55, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 'standard', 232, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '708', '2832.0000', '1888.0000', '', '1180.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (910, 55, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 'standard', 231, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '708', '2124.0000', '1416.0000', '', '1180.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (911, 55, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 'standard', 230, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '708', '6372.0000', '4248.0000', '', '1180.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (912, 55, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 'standard', 229, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '708', '6372.0000', '4248.0000', '', '1180.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (913, 55, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 'standard', 228, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '708', '6372.0000', '4248.0000', '', '1180.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (914, 55, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 'standard', 227, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '708', '6372.0000', '4248.0000', '', '1180.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (915, 55, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 'standard', 226, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '637.5', '3825.0000', '2655.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (916, 55, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 'standard', 225, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '637.5', '3825.0000', '2655.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (917, 55, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 'standard', 224, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '637.5', '3825.0000', '2655.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (918, 55, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 'standard', 223, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '637.5', '3825.0000', '2655.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (919, 55, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 'standard', 222, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '637.5', '3825.0000', '2655.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (920, 55, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 'standard', 221, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '637.5', '3825.0000', '2655.0000', '', '1080.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (921, 55, 80, 'JI-M-IBLT-0041', 'JI Italian L Belt', 'standard', 220, '375.0000', '442.5000', '18.0000', 1, '1215.0000', 5, '18%', '637.5', '11475.0000', '7965.0000', '', '1080.0000', NULL, 2, 'PCS', '18.0000', NULL, '9%', '607.5000', '607.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (923, 97, 291, 'JI-M-CBLT-0001', 'JI Ceramic Belt - 35mm', 'standard', 0, '1050.0000', '1239.0000', '4.0000', 1, '756.0000', 5, '18%', '1611', '6444.0000', '4956.0000', '', '2850.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (924, 97, 292, 'JI-M-CBLT-0002', 'JI Ceramic Belt - 40mm', 'standard', 0, '1050.0000', '1239.0000', '2.0000', 1, '378.0000', 5, '18%', '1761', '3522.0000', '2478.0000', '', '3000.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (925, 98, 298, 'JI-M-CWLT-0001', 'JI Chain Wallet(Esiposs)', 'standard', 0, '254.2373', '300.0000', '11.0000', 1, '503.3897', 5, '18%', '370', '4070.0000', '3300.0000', '', '670.0000', NULL, 2, 'PCS', '11.0000', NULL, '9%', '251.6949', '251.6949', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (926, 98, 299, 'JI-M-CWLT-0002', 'JI Chain Wallet(Esiposs)', 'standard', 0, '288.1356', '340.0000', '13.0000', 1, '674.2372', 5, '18%', '440', '5720.0000', '4420.0000', '', '780.0000', NULL, 2, 'PCS', '13.0000', NULL, '9%', '337.1186', '337.1186', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (927, 98, 300, 'JI-M-CWLT-0003', 'JI Chain Wallet(Esiposs)', 'standard', 0, '330.5085', '390.0000', '11.0000', 1, '654.4065', 5, '18%', '500', '5500.0000', '4290.0000', '', '890.0000', NULL, 2, 'PCS', '11.0000', NULL, '9%', '327.2033', '327.2033', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (928, 98, 301, 'JI-M-CWLT-0004', 'JI Chain Wallet(Esiposs)', 'standard', 0, '440.6780', '520.0000', '8.0000', 1, '634.5760', 5, '18%', '470', '3760.0000', '4160.0000', '', '990.0000', NULL, 2, 'PCS', '8.0000', NULL, '9%', '317.2880', '317.2880', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (932, 100, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '60.0000', 1, '194.4000', 5, '18%', '0', '0.0000', '1274.4000', '', '18.0000', NULL, 2, 'PCS', '60.0000', NULL, '18%', '0.0000', '0.0000', '194.4000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (933, 100, 293, 'Buckle-1', 'Buckle', 'standard', 0, '19.0000', '22.4200', '80.0000', 1, '273.6000', 5, '18%', '0', '0.0000', '1793.6000', '', '19.0000', NULL, 2, 'PCS', '80.0000', NULL, '18%', '0.0000', '0.0000', '273.6000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (934, 100, 293, 'Buckle-1', 'Buckle', 'standard', 0, '20.0000', '23.6000', '100.0000', 1, '360.0000', 5, '18%', '0', '0.0000', '2360.0000', '', '20.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '360.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (940, 101, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '55.0000', '64.9000', '50.0000', 1, '495.0000', 5, '18%', '0', '0.0000', '3245.0000', '', '55.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '495.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (941, 102, 319, 'JI-M-IB-0002-53', 'JI Imoported Belt-Cobra', 'standard', 0, '700.0000', '826.0000', '6.0000', 1, '756.0000', 5, '18%', '824', '4944.0000', '4956.0000', '', '1650.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (942, 102, 320, 'JI-M-IB-0003-53', 'JI Imoported Belt-Cobra', 'standard', 0, '700.0000', '826.0000', '6.0000', 1, '756.0000', 5, '18%', '824', '4944.0000', '4956.0000', '', '1650.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (943, 102, 321, 'JI-M-ILB-0102-66', 'JI Italian L Belt-Lineing', 'standard', 0, '589.8305', '696.0000', '3.0000', 1, '318.5085', 5, '18%', '754', '2262.0000', '2088.0000', '', '1450.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '159.2543', '159.2543', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (944, 102, 322, 'JI-M-ILB-0104-53', 'JI Italian L Belt-Cobra', 'standard', 0, '650.0000', '767.0000', '3.0000', 1, '351.0000', 5, '18%', '783', '2349.0000', '2301.0000', '', '1550.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (945, 102, 323, 'JI-M-IB-0004', 'JI Imoported Belt', 'standard', 0, '519.4915', '613.0000', '9.0000', 1, '841.5765', 5, '18%', '637', '5733.0000', '5517.0000', '', '1250.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '420.7883', '420.7883', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (946, 102, 324, 'JI-M-IB-0005', 'JI Imoported Belt', 'standard', 0, '259.3220', '306.0000', '5.0000', 1, '233.3900', 5, '18%', '544', '2720.0000', '1530.0000', '', '850.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '116.6950', '116.6950', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (947, 102, 325, 'JI-M-IB-0006', 'JI Imoported Belt', 'standard', 0, '325.4237', '384.0000', '6.0000', 1, '351.4578', 5, '18%', '566', '3396.0000', '2304.0000', '', '950.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.7289', '175.7289', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (948, 102, 326, 'JI-M-IB-0007', 'JI Imoported Belt', 'standard', 0, '324.5763', '383.0000', '1.0000', 1, '58.4237', 5, '18%', '367', '367.0000', '383.0000', '', '750.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '29.2119', '29.2119', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (949, 102, 328, 'JI-M-IB-0010', 'JI Imoported Belt', 'standard', 0, '259.3220', '306.0000', '16.0000', 1, '746.8480', 5, '18%', '0', '0.0000', '4896.0000', '', '306.0000', NULL, 2, 'PCS', '16.0000', NULL, '9%', '373.4240', '373.4240', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (950, 102, 327, 'JI-M-IB-0009', 'JI Imoported Belt', 'standard', 0, '317.7966', '375.0000', '12.0000', 1, '686.4408', 5, '18%', '0', '0.0000', '4500.0000', '', '375.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '343.2204', '343.2204', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (951, 102, 327, 'JI-M-IB-0009', 'JI Imoported Belt', 'standard', 0, '317.7966', '375.0000', '6.0000', 1, '343.2204', 5, '18%', '0', '0.0000', '2250.0000', '', '375.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '171.6102', '171.6102', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (952, 103, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '50.0000', 1, '162.0000', 5, '18%', '0', '0.0000', '1062.0000', '', '18.0000', NULL, 2, 'PCS', '50.0000', NULL, '9%', '81.0000', '81.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (953, 103, 293, 'Buckle-1', 'Buckle', 'standard', 0, '19.0000', '22.4200', '45.0000', 1, '153.9000', 5, '18%', '0', '0.0000', '1008.9000', '', '19.0000', NULL, 2, 'PCS', '45.0000', NULL, '9%', '76.9500', '76.9500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (954, 103, 293, 'Buckle-1', 'Buckle', 'standard', 0, '20.0000', '23.6000', '40.0000', 1, '144.0000', 5, '18%', '0', '0.0000', '944.0000', '', '20.0000', NULL, 2, 'PCS', '40.0000', NULL, '9%', '72.0000', '72.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (959, 105, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '55.0000', '64.9000', '150.0000', 1, '1485.0000', 5, '18%', '0', '0.0000', '9735.0000', '', '55.0000', NULL, 2, 'PCS', '150.0000', NULL, '9%', '742.5000', '742.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (960, 104, 293, 'Buckle-1', 'Buckle', 'standard', 0, '23.0000', '27.1400', '300.0000', 1, '1242.0000', 5, '18%', '0', '0.0000', '8142.0000', '', '23.0000', NULL, 2, 'PCS', '300.0000', NULL, '9%', '621.0000', '621.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (961, 104, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '300.0000', 1, '1350.0000', 5, '18%', '0', '0.0000', '8850.0000', '', '25.0000', NULL, 2, 'PCS', '300.0000', NULL, '9%', '675.0000', '675.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (962, 104, 293, 'Buckle-1', 'Buckle', 'standard', 0, '22.0000', '25.9600', '300.0000', 1, '1188.0000', 5, '18%', '0', '0.0000', '7788.0000', '', '22.0000', NULL, 2, 'PCS', '300.0000', NULL, '9%', '594.0000', '594.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (963, 106, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '120.0000', 1, '388.8000', 5, '18%', '0', '0.0000', '2548.8000', '', '18.0000', NULL, 2, 'PCS', '120.0000', NULL, '18%', '0.0000', '0.0000', '388.8000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (964, 107, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '60.0000', 1, '194.4000', 5, '18%', '0', '0.0000', '1274.4000', '', '18.0000', NULL, 2, 'PCS', '60.0000', NULL, '9%', '97.2000', '97.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (965, 107, 293, 'Buckle-1', 'Buckle', 'standard', 0, '19.0000', '22.4200', '70.0000', 1, '239.4000', 5, '18%', '0', '0.0000', '1569.4000', '', '19.0000', NULL, 2, 'PCS', '70.0000', NULL, '9%', '119.7000', '119.7000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (966, 107, 293, 'Buckle-1', 'Buckle', 'standard', 0, '19.0000', '22.4200', '30.0000', 1, '102.6000', 5, '18%', '0', '0.0000', '672.6000', '', '19.0000', NULL, 2, 'PCS', '30.0000', NULL, '9%', '51.3000', '51.3000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (967, 108, 293, 'Buckle-1', 'Buckle', 'standard', 0, '19.0000', '22.4200', '60.0000', 1, '205.2000', 5, '18%', '0', '0.0000', '1345.2000', '', '19.0000', NULL, 2, 'PCS', '60.0000', NULL, '18%', '0.0000', '0.0000', '205.2000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (968, 108, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '16.0000', '18.8800', '40.0000', 1, '115.2000', 5, '18%', '0', '0.0000', '755.2000', '', '16.0000', NULL, 2, 'PCS', '40.0000', NULL, '18%', '0.0000', '0.0000', '115.2000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (969, 109, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '60.0000', 1, '194.4000', 5, '18%', '0', '0.0000', '1274.4000', '', '18.0000', NULL, 2, 'PCS', '60.0000', NULL, '18%', '0.0000', '0.0000', '194.4000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (970, 109, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '18.0000', '21.2400', '60.0000', 1, '194.4000', 5, '18%', '0', '0.0000', '1274.4000', '', '18.0000', NULL, 2, 'PCS', '60.0000', NULL, '18%', '0.0000', '0.0000', '194.4000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (971, 109, 293, 'Buckle-1', 'Buckle', 'standard', 0, '19.0000', '22.4200', '50.0000', 1, '171.0000', 5, '18%', '0', '0.0000', '1121.0000', '', '19.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '171.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (972, 109, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '20.0000', '23.6000', '45.0000', 1, '162.0000', 5, '18%', '0', '0.0000', '1062.0000', '', '20.0000', NULL, 2, 'PCS', '45.0000', NULL, '18%', '0.0000', '0.0000', '162.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (973, 110, 293, 'Buckle-1', 'Buckle', 'standard', 0, '17.0000', '20.0600', '100.0000', 1, '306.0000', 5, '18%', '0', '0.0000', '2006.0000', '', '17.0000', NULL, 2, 'PCS', '100.0000', NULL, '9%', '153.0000', '153.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (974, 110, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '18.0000', '21.2400', '70.0000', 1, '226.8000', 5, '18%', '0', '0.0000', '1486.8000', '', '18.0000', NULL, 2, 'PCS', '70.0000', NULL, '9%', '113.4000', '113.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (975, 110, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '110.0000', 1, '356.4000', 5, '18%', '0', '0.0000', '2336.4000', '', '18.0000', NULL, 2, 'PCS', '110.0000', NULL, '9%', '178.2000', '178.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (976, 110, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '19.0000', '22.4200', '100.0000', 1, '342.0000', 5, '18%', '0', '0.0000', '2242.0000', '', '19.0000', NULL, 2, 'PCS', '100.0000', NULL, '9%', '171.0000', '171.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (977, 111, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '100.0000', 1, '324.0000', 5, '18%', '0', '0.0000', '2124.0000', '', '18.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '324.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (978, 111, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '19.0000', '22.4200', '90.0000', 1, '307.8000', 5, '18%', '0', '0.0000', '2017.8000', '', '19.0000', NULL, 2, 'PCS', '90.0000', NULL, '18%', '0.0000', '0.0000', '307.8000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (983, 113, 57, 'JI-M-BBI-0013', 'JI Ind Brass Bkl', 'standard', 162, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 628, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (984, 113, 56, 'JI-M-BBI-0012', 'JI Ind Brass Bkl', 'standard', 161, '450.0000', '531.0000', '-5.0000', 1, '-405.0000', 5, '18%', '919', '-4595.0000', '-2655.0000', '', '1450.0000', 629, 2, 'PCS', '-5.0000', NULL, '9%', '-202.5000', '-202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (985, 113, 55, 'JI-M-BBI-0011', 'JI Ind Brass Bkl', 'standard', 160, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 630, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (986, 113, 54, 'JI-M-BBI-0010', 'JI Ind Brass Bkl', 'standard', 159, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 631, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (987, 113, 53, 'JI-M-BBI-0009', 'JI Ind Brass Bkl', 'standard', 158, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 632, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (988, 113, 52, 'JI-M-BBI-0008', 'JI Ind Brass Bkl', 'standard', 157, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 633, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (989, 113, 51, 'JI-M-BBI-0007', 'JI Ind Brass Bkl', 'standard', 156, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 634, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (990, 113, 50, 'JI-M-BBI-0006', 'JI Ind Brass Bkl', 'standard', 155, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 635, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (991, 113, 49, 'JI-M-BBI-0005', 'JI Ind Brass Bkl', 'standard', 154, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 636, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (992, 113, 48, 'JI-M-BBI-0004', 'JI Ind Brass BKL', 'standard', 153, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 637, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (993, 113, 47, 'JI-M-BBI-0003', 'JI Ind Brass Bkl', 'standard', 152, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 638, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (994, 113, 46, 'JI-M-BBI-0002', 'JI Ind Brass Bkl', 'standard', 151, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 639, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (995, 113, 37, 'JI-M-BBI-0001', 'JI Ind Brass Bkl', 'standard', 119, '450.0000', '531.0000', '0.0000', 1, '0.0000', 5, '18%', '919', '0.0000', '0.0000', '', '1450.0000', 640, 2, 'PCS', '0.0000', NULL, '9%', '0.0000', '0.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (996, 112, 401, 'G7-M-SLP-0006-01', 'G7 Slipper-black=6', 'standard', 0, '550.0000', '649.0000', '12.0000', 1, '1188.0000', 5, '18%', '1440', '17280.0000', '7788.0000', '', '1990.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '594.0000', '594.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (997, 112, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown=6', 'standard', 0, '550.0000', '649.0000', '12.0000', 1, '1188.0000', 5, '18%', '1440', '17280.0000', '7788.0000', '', '1990.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '594.0000', '594.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (998, 112, 403, 'G7-M-SLP-0007-01', 'G7 Slipper-black=11', 'standard', 0, '600.0000', '708.0000', '12.0000', 1, '1296.0000', 5, '18%', '1390', '16680.0000', '8496.0000', '', '1990.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '648.0000', '648.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (999, 112, 404, 'G7-M-SLP-0007-03', 'G7 Slipper-brown=11', 'standard', 0, '600.0000', '708.0000', '12.0000', 1, '1296.0000', 5, '18%', '1390', '16680.0000', '8496.0000', '', '1990.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '648.0000', '648.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1000, 114, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', 'standard', 0, '645.0000', '761.1000', '81.0000', 1, '9404.1000', 5, '18%', '0', '0.0000', '61649.1000', '', '645.0000', NULL, 2, 'PCS', '81.0000', NULL, '9%', '4702.0500', '4702.0500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1001, 114, 334, 'LS-M-SLP-004=010', 'LS  Slipper', 'standard', 0, '730.0000', '861.4000', '45.0000', 1, '5913.0000', 5, '18%', '0', '0.0000', '38763.0000', '', '730.0000', NULL, 2, 'PCS', '45.0000', NULL, '9%', '2956.5000', '2956.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1002, 114, 335, 'LS-M-SLP-005=006', 'LS Slipper', 'standard', 0, '603.0000', '711.5400', '36.0000', 1, '3907.4400', 5, '18%', '0', '0.0000', '25615.4400', '', '603.0000', NULL, 2, 'PCS', '36.0000', NULL, '9%', '1953.7200', '1953.7200', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1003, 115, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '60.0000', 1, '194.4000', 5, '18%', '0', '0.0000', '1274.4000', '', '18.0000', NULL, 2, 'PCS', '60.0000', NULL, '18%', '0.0000', '0.0000', '194.4000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1004, 115, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '19.0000', '22.4200', '50.0000', 1, '171.0000', 5, '18%', '0', '0.0000', '1121.0000', '', '19.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '171.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1005, 115, 293, 'Buckle-1', 'Buckle', 'standard', 0, '20.0000', '23.6000', '50.0000', 1, '180.0000', 5, '18%', '0', '0.0000', '1180.0000', '', '20.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '180.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1006, 115, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '17.0000', '20.0600', '50.0000', 1, '153.0000', 5, '18%', '0', '0.0000', '1003.0000', '', '17.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '153.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1007, 116, 293, 'Buckle-1', 'Buckle', 'standard', 0, '17.0000', '20.0600', '50.0000', 1, '153.0000', 5, '18%', '0', '0.0000', '1003.0000', '', '17.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '153.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1008, 116, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '19.0000', '22.4200', '50.0000', 1, '171.0000', 5, '18%', '0', '0.0000', '1121.0000', '', '19.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '171.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1024, 117, 436, 'JI-M-IB-0012', 'JI Imoported Belt', 'standard', 0, '550.0000', '649.0000', '9.0000', 1, '891.0000', 5, '18%', '0', '0.0000', '5841.0000', '', '649.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '445.5000', '445.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1025, 117, 326, 'JI-M-IB-0007', 'JI Imoported Belt', 'standard', 0, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '0', '0.0000', '2301.0000', '', '383.5000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1026, 117, 144, 'JI-M-CB-0001', 'JI Cotton Belt', 'standard', 381, '250.0000', '295.0000', '12.0000', 1, '540.0000', 5, '18%', '0', '0.0000', '3540.0000', '', '295.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '270.0000', '270.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1027, 117, 435, 'JI-M-IB-0011', 'JI Imoported Belt', 'standard', 0, '325.0000', '383.5000', '16.0000', 1, '936.0000', 5, '18%', '0', '0.0000', '6136.0000', '', '383.5000', NULL, 2, 'PCS', '16.0000', NULL, '9%', '468.0000', '468.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1028, 117, 323, 'JI-M-IB-0004', 'JI Imoported Belt', 'standard', 0, '520.0000', '613.6000', '18.0000', 1, '1684.8000', 5, '18%', '0', '0.0000', '11044.8000', '', '613.6000', NULL, 2, 'PCS', '18.0000', NULL, '9%', '842.4000', '842.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1029, 117, 437, 'JI-M-IB-0013', 'JI Imoported Belt', 'standard', 0, '550.0000', '649.0000', '6.0000', 1, '594.0000', 5, '18%', '0', '0.0000', '3894.0000', '', '649.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '297.0000', '297.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1030, 117, 142, 'JI-M-IBLT-0075', 'JI Italian L Belt', 'standard', 378, '240.0000', '283.2000', '4.0000', 1, '172.8000', 5, '18%', '0', '0.0000', '1132.8000', '', '283.2000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '86.4000', '86.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1031, 117, 148, 'JI-M-IB-0001', 'JI Imported Belt', 'standard', 386, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '0', '0.0000', '3186.0000', '', '531.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1032, 119, 181, 'JI-M-IBLT-0091-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '300.0000', '354.0000', '18.0000', 1, '972.0000', 5, '18%', '0', '0.0000', '6372.0000', '', '354.0000', NULL, 2, 'PCS', '18.0000', NULL, '9%', '486.0000', '486.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1033, 119, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 33, '400.0000', '472.0000', '18.0000', 1, '1296.0000', 5, '18%', '0', '0.0000', '8496.0000', '', '472.0000', NULL, 2, 'PCS', '18.0000', NULL, '9%', '648.0000', '648.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1034, 119, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 32, '400.0000', '472.0000', '18.0000', 1, '1296.0000', 5, '18%', '0', '0.0000', '8496.0000', '', '472.0000', NULL, 2, 'PCS', '18.0000', NULL, '9%', '648.0000', '648.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1035, 119, 13, 'JI-M-IBLT-0003', 'JI Italian L Belt', 'standard', 34, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '472.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1036, 119, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 27, '350.0000', '413.0000', '12.0000', 1, '756.0000', 5, '18%', '0', '0.0000', '4956.0000', '', '413.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1037, 119, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 26, '350.0000', '413.0000', '9.0000', 1, '567.0000', 5, '18%', '0', '0.0000', '3717.0000', '', '413.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '283.5000', '283.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1038, 119, 12, 'JI-M-IBLT-0002', 'JI Italian L Belt', 'standard', 28, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '0', '0.0000', '1239.0000', '', '413.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1039, 119, 24, 'JI-M-IBLT-0014', 'JI Italian L Belt', 'standard', 74, '350.0000', '413.0000', '12.0000', 1, '756.0000', 5, '18%', '0', '0.0000', '4956.0000', '', '413.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '378.0000', '378.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1040, 119, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 109, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '0', '0.0000', '2655.0000', '', '392.5000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1041, 119, 35, 'JI-M-IBLT-0006', 'JI Italian L Belt', 'standard', 103, '375.0000', '442.5000', '3.0000', 1, '202.5000', 5, '18%', '0', '0.0000', '1327.5000', '', '442.5000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '101.2500', '101.2500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1042, 119, 11, 'JI-M-IBLT-0001', 'JI Italian L Belt', 'standard', 22, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '0', '0.0000', '2478.0000', '', '413.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1043, 119, 38, 'JI-M-IBLT-0008', 'JI Italian L Belt', 'standard', 122, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '0', '0.0000', '2478.0000', '', '413.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1044, 119, 38, 'JI-M-IBLT-0008', 'JI Italian L Belt', 'standard', 121, '350.0000', '413.0000', '3.0000', 1, '189.0000', 5, '18%', '0', '0.0000', '1239.0000', '', '413.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '94.5000', '94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1045, 119, 29, 'JI-M-IBLT-0019', 'JI Italian L Belt', 'standard', 84, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '0', '0.0000', '2832.0000', '', '472.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1046, 119, 25, 'JI-M-IBLT-0015', 'JI Italian L Belt', 'standard', 78, '400.0000', '472.0000', '12.0000', 1, '864.0000', 5, '18%', '0', '0.0000', '5664.0000', '', '472.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '432.0000', '432.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1047, 119, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 'standard', 46, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '0', '0.0000', '4248.0000', '', '472.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1048, 119, 15, 'JI-M-IBLT-0005', 'JI Italian L Belt', 'standard', 45, '400.0000', '472.0000', '9.0000', 1, '648.0000', 5, '18%', '0', '0.0000', '4248.0000', '', '472.0000', NULL, 2, 'PCS', '9.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1049, 119, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 61, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '0', '0.0000', '2478.0000', '', '413.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1050, 119, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 117, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '0', '0.0000', '2832.0000', '', '422.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1051, 119, 19, 'JI-M-IBLT-0009', 'JI Italian L Belt', 'standard', 116, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '0', '0.0000', '2832.0000', '', '422.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1052, 119, 66, 'JI-M-IBLT-0028', 'JI Italian L Belt', 'standard', 184, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '0', '0.0000', '2478.0000', '', '413.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1053, 119, 23, 'JI-M-IBLT-0013', 'JI Italian L Belt', 'standard', 68, '325.0000', '383.5000', '6.0000', 1, '351.0000', 5, '18%', '0', '0.0000', '2301.0000', '', '383.5000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '175.5000', '175.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1054, 119, 113, 'JI-M-LB-0009', 'JI Lock Belt', 'standard', 302, '375.0000', '442.5000', '4.0000', 1, '270.0000', 5, '18%', '', '0.0000', '1770.0000', '', '442.5000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1055, 119, 33, 'JI-M-ISM-0001', 'JI Italian Steel Bkl', 'standard', 91, '500.0000', '590.0000', '15.0000', 1, '1350.0000', 5, '18%', '0', '0.0000', '8850.0000', '', '590.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '675.0000', '675.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1056, 120, 61, 'JI-M-IBLT-0023', 'JI Italian L Belt', 'standard', 173, '300.0000', '354.0000', '6.0000', 1, '324.0000', 5, '18%', '0', '0.0000', '2124.0000', '', '354.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '162.0000', '162.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1057, 120, 86, 'JI-M-IBLT-0046', 'JI Italian L Belt', 'standard', 251, '375.0000', '442.5000', '12.0000', 1, '810.0000', 5, '18%', '0', '0.0000', '5310.0000', '', '442.5000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1058, 120, 81, 'JI-M-IBLT-0042', 'JI Italian L Belt', 'standard', 221, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '0', '0.0000', '2655.0000', '', '442.5000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1059, 120, 96, 'JI-M-IBLT-0052', 'JI Italian L Belt', 'standard', 273, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '0', '0.0000', '2655.0000', '', '442.5000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1060, 120, 96, 'JI-M-IBLT-0052', 'JI Italian L Belt', 'standard', 274, '375.0000', '442.5000', '6.0000', 1, '405.0000', 5, '18%', '0', '0.0000', '2655.0000', '', '442.5000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '202.5000', '202.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1061, 120, 82, 'JI-M-IBLT-0043', 'JI Italian L Belt', 'standard', 227, '375.0000', '442.5000', '2.0000', 1, '135.0000', 5, '18%', '0', '0.0000', '885.0000', '', '442.5000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '67.5000', '67.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1062, 120, 286, 'JI-M-ISM-0004-56', 'JI Italian Steel Bkl-KRT', 'standard', 0, '500.0000', '590.0000', '12.0000', 1, '1080.0000', 5, '18%', '0', '0.0000', '7080.0000', '', '590.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '540.0000', '540.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1063, 120, 408, 'JI-M-IBLT-104', 'JI Italian L Belt(Dimond Bkl)', 'standard', 0, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '0', '0.0000', '2832.0000', '', '472.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1064, 120, 408, 'JI-M-IBLT-104', 'JI Italian L Belt(Dimond Bkl)', 'standard', 0, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '0', '0.0000', '2832.0000', '', '472.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1065, 120, 92, 'JI-M-LB-0001', 'JI Lock Belt', 'standard', 268, '250.0000', '295.0000', '6.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '295.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1066, 120, 93, 'JI-M-LB-0002', 'JI Lock Belt', 'standard', 269, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '0', '0.0000', '1593.0000', '', '265.5000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1067, 120, 94, 'JI-M-LB-0003', 'JI Lock Belt', 'standard', 270, '225.0000', '265.5000', '6.0000', 1, '243.0000', 5, '18%', '0', '0.0000', '1593.0000', '', '265.5000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1068, 120, 440, 'JI-M-IBLT-0105-23', 'JI Italian L Belt-MAGIC', 'standard', 0, '375.0000', '442.5000', '12.0000', 1, '810.0000', 5, '18%', '0', '0.0000', '5310.0000', '', '442.5000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '405.0000', '405.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1069, 120, 441, 'JI-M-IBLT-0106-24', 'JI Italian L Belt-Palmila', 'standard', 0, '400.0000', '472.0000', '6.0000', 1, '432.0000', 5, '18%', '0', '0.0000', '2832.0000', '', '472.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '216.0000', '216.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1070, 120, 439, 'JI-M-IBLT-0104-48', 'JI Italian L Belt-IMPORTED Metro', 'standard', 0, '300.0000', '354.0000', '4.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '354.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1071, 121, 333, 'LS-M-SLP-001=002=003', 'LS Slipper', 'standard', 0, '761.1000', '898.1000', '27.0000', 1, '3698.9460', 5, '18%', '0', '0.0000', '24248.6500', '', '761.1000', NULL, 2, 'PCS', '27.0000', NULL, '9%', '1849.4730', '1849.4730', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1072, 121, 334, 'LS-M-SLP-004=010', 'LS  Slipper', 'standard', 0, '861.4000', '1016.4500', '15.0000', 1, '2325.7800', 5, '18%', '0', '0.0000', '15246.7800', '', '861.4000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '1162.8900', '1162.8900', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1073, 121, 335, 'LS-M-SLP-005=006', 'LS Slipper', 'standard', 0, '711.5400', '839.6200', '12.0000', 1, '1536.9264', 5, '18%', '0', '0.0000', '10075.4100', '', '711.5400', NULL, 2, 'PCS', '12.0000', NULL, '9%', '768.4632', '768.4632', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1207, 122, 401, 'G7-M-SLP-0006-01', 'G7 Slipper-black=11', 'standard', 0, '550.0000', '649.0000', '12.0000', 1, '1188.0000', 5, '18%', '0', '0.0000', '7788.0000', '', '649.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '594.0000', '594.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1208, 122, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown=8', 'standard', 0, '550.0000', '649.0000', '12.0000', 1, '1188.0000', 5, '18%', '0', '0.0000', '7788.0000', '', '649.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '594.0000', '594.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1209, 122, 403, 'G7-M-SLP-0007-01', 'G7 Slipper-black=07', 'standard', 0, '600.0000', '708.0000', '12.0000', 1, '1296.0000', 5, '18%', '0', '0.0000', '8496.0000', '', '708.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '648.0000', '648.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1210, 122, 404, 'G7-M-SLP-0007-03', 'G7 Slipper-brown=9', 'standard', 0, '600.0000', '708.0000', '12.0000', 1, '1296.0000', 5, '18%', '0', '0.0000', '8496.0000', '', '708.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '648.0000', '648.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1211, 123, 186, 'G7-M-OB-000003-3', 'G7 Office Bag-BROWN', 'standard', 0, '1500.0000', '1770.0000', '1.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '1770.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1225, 125, 254, 'G7-M-HB-0001-3', 'G7 Leather Bag-BROWN', 'standard', 0, '2200.0000', '2596.0000', '2.0000', 1, '792.0000', 5, '18%', '0', '0.0000', '5192.0000', '', '2596.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '396.0000', '396.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1226, 125, 255, 'G7-M-HB-0001-1', 'G7 Leather Bag-BLACK', 'standard', 0, '2200.0000', '2596.0000', '2.0000', 1, '792.0000', 5, '18%', '0', '0.0000', '5192.0000', '', '2596.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '396.0000', '396.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1227, 125, 4, 'G7-M-OB-000001', 'G7 Office Bag', 'standard', 8, '1530.0000', '1805.4000', '1.0000', 1, '275.4000', 5, '18%', '0', '0.0000', '1805.4000', '', '1805.4000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '137.7000', '137.7000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1228, 125, 4, 'G7-M-OB-000001', 'G7 Office Bag', 'standard', 9, '1530.0000', '1805.4000', '2.0000', 1, '550.8000', 5, '18%', '0', '0.0000', '3610.8000', '', '1805.4000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '275.4000', '275.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1229, 125, 4, 'G7-M-OB-000001', 'G7 Office Bag', 'standard', 10, '1530.0000', '1805.4000', '1.0000', 1, '275.4000', 5, '18%', '0', '0.0000', '1805.4000', '', '1805.4000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '137.7000', '137.7000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1230, 125, 163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 'standard', 401, '2350.0000', '2773.0000', '3.0000', 1, '1269.0000', 5, '18%', '0', '0.0000', '8319.0000', '', '2773.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '634.5000', '634.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1231, 125, 163, 'G7-W-WLB-0001', 'G7 Ladies Bag', 'standard', 403, '2350.0000', '2773.0000', '3.0000', 1, '1269.0000', 5, '18%', '0', '0.0000', '8319.0000', '', '2773.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '634.5000', '634.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1232, 125, 186, 'G7-M-OB-000003-3', 'G7 Office Bag-BROWN', 'standard', 0, '1500.0000', '1770.0000', '2.0000', 1, '540.0000', 5, '18%', '0', '0.0000', '3540.0000', '', '1770.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '270.0000', '270.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1233, 125, 187, 'G7-M-OB-000003-1', 'G7 Office Bag-BLACK', 'standard', 0, '1500.0000', '1770.0000', '1.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '1770.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1234, 125, 188, 'G7-M-OB-000003-4', 'G7 Office Bag-TAN', 'standard', 0, '1500.0000', '1770.0000', '1.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '1770.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1235, 125, 7, 'G7-M-SB-000001', 'G7 Side Bag', 'standard', 14, '750.0000', '885.0000', '2.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '885.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1236, 125, 9, 'G7-M-SB-000003', 'G7 Side Bag', 'standard', 16, '700.0000', '826.0000', '2.0000', 1, '252.0000', 5, '18%', '0', '0.0000', '1652.0000', '', '826.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '126.0000', '126.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1237, 125, 245, 'G7-W-WLB-0012', 'G7 Ladies Bag ', 'standard', 0, '2400.0000', '2832.0000', '8.0000', 1, '3456.0000', 5, '18%', '0', '0.0000', '22656.0000', '', '2832.0000', NULL, 2, 'PCS', '8.0000', NULL, '9%', '1728.0000', '1728.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1238, 126, 595, 'G7-W-BK-0001', 'WATERPROOF BACKPACK', 'standard', 0, '500.0000', '590.0000', '3.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '590.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1239, 126, 597, 'G7-W-BK-0003', 'WATERPROOF BACKPACK', 'standard', 0, '590.0000', '696.2000', '5.0000', 1, '531.0000', 5, '18%', '0', '0.0000', '3481.0000', '', '696.2000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '265.5000', '265.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1240, 126, 598, 'G7-W-BK-0004', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '4.0000', 1, '324.0000', 5, '18%', '0', '0.0000', '2124.0000', '', '531.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '162.0000', '162.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1241, 126, 596, 'G7-W-BK-0002', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '3.0000', 1, '243.0000', 5, '18%', '0', '0.0000', '1593.0000', '', '531.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1242, 126, 599, 'G7-W-BK-0006', 'WATERPROOF BACKPACK', 'standard', 0, '700.0000', '826.0000', '2.0000', 1, '252.0000', 5, '18%', '0', '0.0000', '1652.0000', '', '826.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '126.0000', '126.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1243, 126, 600, 'G7-W-BK-0007', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '2.0000', 1, '162.0000', 5, '18%', '0', '0.0000', '1062.0000', '', '531.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '81.0000', '81.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1244, 126, 601, 'G7-W-BK-0008', 'WATERPROOF BACKPACK', 'standard', 0, '750.0000', '885.0000', '5.0000', 1, '675.0000', 5, '18%', '0', '0.0000', '4425.0000', '', '885.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1245, 126, 612, 'G7-W-PLSB-0001', 'PU LADIES SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '7.0000', 1, '630.0000', 5, '18%', '0', '0.0000', '4130.0000', '', '590.0000', NULL, 2, 'PCS', '7.0000', NULL, '9%', '315.0000', '315.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1246, 126, 613, 'G7-W-PLSB-0002', 'PU LADIES SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '10.0000', 1, '900.0000', 5, '18%', '0', '0.0000', '5900.0000', '', '590.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '450.0000', '450.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1247, 126, 604, 'G7-M-LPH-0001', 'LEATHER LAPTOP HANDBAG', 'standard', 0, '500.0000', '590.0000', '5.0000', 1, '450.0000', 5, '18%', '0', '0.0000', '2950.0000', '', '590.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '225.0000', '225.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1248, 126, 603, 'G7-M-LB-0002', 'LEATHER BRIEFCASE', 'standard', 0, '500.0000', '590.0000', '3.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '590.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1249, 126, 605, 'G7-W-LBK-0001', 'LEATHER BACKPACK', 'standard', 0, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '472.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1250, 126, 609, 'G7-W-LSB-0003', 'LEATHER SHOULDER BAG', 'standard', 0, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '0', '0.0000', '1888.0000', '', '472.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1251, 126, 608, 'G7-W-LSB-0002', 'LEATHER SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '4.0000', 1, '360.0000', 5, '18%', '0', '0.0000', '2360.0000', '', '590.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '180.0000', '180.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1252, 126, 610, 'G7-W-LSB-0004', 'LEATHER SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '1.0000', 1, '90.0000', 5, '18%', '0', '0.0000', '590.0000', '', '590.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '45.0000', '45.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1253, 126, 602, 'G7-M-LB-0001', 'LEATHER BRIEFCASE', 'standard', 0, '500.0000', '590.0000', '1.0000', 1, '90.0000', 5, '18%', '0', '0.0000', '590.0000', '', '590.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '45.0000', '45.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1254, 126, 607, 'G7-W-LSB-0001', 'LEATHER SHOULDER BAG', 'standard', 0, '400.0000', '472.0000', '2.0000', 1, '144.0000', 5, '18%', '0', '0.0000', '944.0000', '', '472.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '72.0000', '72.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1309, 127, 596, 'G7-W-BK-0002', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '4.0000', 1, '324.0000', 5, '18%', '0', '0.0000', '2124.0000', '', '531.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '162.0000', '162.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1310, 127, 597, 'G7-W-BK-0003', 'WATERPROOF BACKPACK', 'standard', 0, '590.0000', '696.2000', '5.0000', 1, '531.0000', 5, '18%', '0', '0.0000', '3481.0000', '', '696.2000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '265.5000', '265.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1311, 127, 598, 'G7-W-BK-0004', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '3.0000', 1, '243.0000', 5, '18%', '0', '0.0000', '1593.0000', '', '531.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1312, 127, 599, 'G7-W-BK-0006', 'WATERPROOF BACKPACK', 'standard', 0, '700.0000', '826.0000', '4.0000', 1, '504.0000', 5, '18%', '0', '0.0000', '3304.0000', '', '826.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '252.0000', '252.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1313, 127, 600, 'G7-W-BK-0007', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '1.0000', 1, '81.0000', 5, '18%', '0', '0.0000', '531.0000', '', '531.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '40.5000', '40.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1314, 127, 601, 'G7-W-BK-0008', 'WATERPROOF BACKPACK', 'standard', 0, '750.0000', '885.0000', '5.0000', 1, '675.0000', 5, '18%', '0', '0.0000', '4425.0000', '', '885.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1315, 127, 612, 'G7-W-PLSB-0001', 'PU LADIES SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '6.0000', 1, '540.0000', 5, '18%', '0', '0.0000', '3540.0000', '', '590.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '270.0000', '270.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1316, 127, 613, 'G7-W-PLSB-0002', 'PU LADIES SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '10.0000', 1, '900.0000', 5, '18%', '0', '0.0000', '5900.0000', '', '590.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '450.0000', '450.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1317, 127, 604, 'G7-M-LPH-0001', 'LEATHER LAPTOP HANDBAG', 'standard', 0, '500.0000', '590.0000', '5.0000', 1, '450.0000', 5, '18%', '0', '0.0000', '2950.0000', '', '590.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '225.0000', '225.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1318, 127, 603, 'G7-M-LB-0002', 'LEATHER BRIEFCASE', 'standard', 0, '500.0000', '590.0000', '4.0000', 1, '360.0000', 5, '18%', '0', '0.0000', '2360.0000', '', '590.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '180.0000', '180.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1319, 127, 605, 'G7-W-LBK-0001', 'LEATHER BACKPACK', 'standard', 0, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '472.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1320, 127, 606, 'G7-W-LBK-0002', 'LEATHER BACKPACK', 'standard', 0, '500.0000', '590.0000', '1.0000', 1, '90.0000', 5, '18%', '0', '0.0000', '590.0000', '', '590.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '45.0000', '45.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1321, 127, 609, 'G7-W-LSB-0003', 'LEATHER SHOULDER BAG', 'standard', 0, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '472.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1322, 127, 610, 'G7-W-LSB-0004', 'LEATHER SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '2.0000', 1, '180.0000', 5, '18%', '0', '0.0000', '1180.0000', '', '590.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '90.0000', '90.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1323, 127, 602, 'G7-M-LB-0001', 'LEATHER BRIEFCASE', 'standard', 0, '500.0000', '590.0000', '2.0000', 1, '180.0000', 5, '18%', '0', '0.0000', '1180.0000', '', '590.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '90.0000', '90.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1324, 127, 607, 'G7-W-LSB-0001', 'LEATHER SHOULDER BAG', 'standard', 0, '400.0000', '472.0000', '2.0000', 1, '144.0000', 5, '18%', '0', '0.0000', '944.0000', '', '472.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '72.0000', '72.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1325, 127, 595, 'G7-W-BK-0001', 'WATERPROOF BACKPACK', 'standard', 0, '500.0000', '590.0000', '3.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '590.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1326, 127, 608, 'G7-W-LSB-0002', 'LEATHER SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '4.0000', 1, '360.0000', 5, '18%', '0', '0.0000', '2360.0000', '', '590.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '180.0000', '180.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1327, 128, 595, 'G7-W-BK-0001', 'WATERPROOF BACKPACK', 'standard', 0, '500.0000', '590.0000', '3.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '590.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1328, 128, 596, 'G7-W-BK-0002', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '3.0000', 1, '243.0000', 5, '18%', '0', '0.0000', '1593.0000', '', '531.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '121.5000', '121.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1329, 128, 597, 'G7-W-BK-0003', 'WATERPROOF BACKPACK', 'standard', 0, '590.0000', '696.2000', '5.0000', 1, '531.0000', 5, '18%', '0', '0.0000', '3481.0000', '', '696.2000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '265.5000', '265.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1330, 128, 598, 'G7-W-BK-0004', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '2.0000', 1, '162.0000', 5, '18%', '0', '0.0000', '1062.0000', '', '531.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '81.0000', '81.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1331, 128, 599, 'G7-W-BK-0006', 'WATERPROOF BACKPACK', 'standard', 0, '700.0000', '826.0000', '1.0000', 1, '126.0000', 5, '18%', '0', '0.0000', '826.0000', '', '826.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '63.0000', '63.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1332, 128, 600, 'G7-W-BK-0007', 'WATERPROOF BACKPACK', 'standard', 0, '450.0000', '531.0000', '2.0000', 1, '162.0000', 5, '18%', '0', '0.0000', '1062.0000', '', '531.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '81.0000', '81.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1333, 128, 601, 'G7-W-BK-0008', 'WATERPROOF BACKPACK', 'standard', 0, '750.0000', '885.0000', '5.0000', 1, '675.0000', 5, '18%', '0', '0.0000', '4425.0000', '', '885.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '337.5000', '337.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1334, 128, 612, 'G7-W-PLSB-0001', 'PU LADIES SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '7.0000', 1, '630.0000', 5, '18%', '0', '0.0000', '4130.0000', '', '590.0000', NULL, 2, 'PCS', '7.0000', NULL, '9%', '315.0000', '315.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1335, 128, 613, 'G7-W-PLSB-0002', 'PU LADIES SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '10.0000', 1, '900.0000', 5, '18%', '0', '0.0000', '5900.0000', '', '590.0000', NULL, 2, 'PCS', '10.0000', NULL, '9%', '450.0000', '450.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1336, 128, 604, 'G7-M-LPH-0001', 'LEATHER LAPTOP HANDBAG', 'standard', 0, '500.0000', '590.0000', '5.0000', 1, '450.0000', 5, '18%', '0', '0.0000', '2950.0000', '', '590.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '225.0000', '225.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1337, 128, 603, 'G7-M-LB-0002', 'LEATHER BRIEFCASE', 'standard', 0, '500.0000', '590.0000', '3.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '590.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1338, 128, 605, 'G7-W-LBK-0001', 'LEATHER BACKPACK', 'standard', 0, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '472.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1339, 128, 606, 'G7-W-LBK-0002', 'LEATHER BACKPACK', 'standard', 0, '500.0000', '590.0000', '1.0000', 1, '90.0000', 5, '18%', '0', '0.0000', '590.0000', '', '590.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '45.0000', '45.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1340, 128, 609, 'G7-W-LSB-0003', 'LEATHER SHOULDER BAG', 'standard', 0, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '472.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1341, 128, 608, 'G7-W-LSB-0002', 'LEATHER SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '2.0000', 1, '180.0000', 5, '18%', '0', '0.0000', '1180.0000', '', '590.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '90.0000', '90.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1342, 128, 610, 'G7-W-LSB-0004', 'LEATHER SHOULDER BAG', 'standard', 0, '500.0000', '590.0000', '2.0000', 1, '180.0000', 5, '18%', '0', '0.0000', '1180.0000', '', '590.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '90.0000', '90.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1343, 128, 602, 'G7-M-LB-0001', 'LEATHER BRIEFCASE', 'standard', 0, '500.0000', '590.0000', '2.0000', 1, '180.0000', 5, '18%', '0', '0.0000', '1180.0000', '', '590.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '90.0000', '90.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1344, 128, 607, 'G7-W-LSB-0001', 'LEATHER SHOULDER BAG', 'standard', 0, '400.0000', '472.0000', '1.0000', 1, '72.0000', 5, '18%', '0', '0.0000', '472.0000', '', '472.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '36.0000', '36.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1345, 129, 714, 'JI-M-IBLT-0131-48', 'JI Italian L Belt-IMPORTED', 'standard', 0, '450.0000', '531.0000', '6.0000', 1, '486.0000', 5, '18%', '0', '0.0000', '3186.0000', '', '531.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '243.0000', '243.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1346, 130, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '25.0000', 1, '81.0000', 5, '18%', '0', '0.0000', '531.0000', '', '18.0000', NULL, 2, 'PCS', '25.0000', NULL, '18%', '0.0000', '0.0000', '81.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1347, 131, 614, 'BU-2', 'Buckle-2', 'standard', 0, '20.0000', '23.6000', '480.0000', 1, '1728.0000', 5, '18%', '0', '0.0000', '11328.0000', '', '20.0000', NULL, 2, 'PCS', '480.0000', NULL, '18%', '0.0000', '0.0000', '1728.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1348, 132, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', NULL, '40.0000', '47.2000', '18.0000', 1, '129.6000', 5, '18%', '0', '0.0000', '849.6000', '', '40.0000', NULL, 2, 'PCS', '18.0000', NULL, '18%', '0.0000', '0.0000', '129.6000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1349, 133, 401, 'G7-M-SLP-0006-01', 'G7 Slipper-black=11', 'standard', 0, '550.0000', '649.0000', '2.0000', 1, '198.0000', 5, '18%', '0', '0.0000', '1298.0000', '', '649.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '99.0000', '99.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1350, 133, 402, 'G7-M-SLP-0006-03', 'G7 Slipper-brown=8', 'standard', 0, '550.0000', '649.0000', '2.0000', 1, '198.0000', 5, '18%', '0', '0.0000', '1298.0000', '', '649.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '99.0000', '99.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1351, 134, 293, 'Buckle-1', 'Buckle', 'standard', 0, '18.0000', '21.2400', '30.0000', 1, '97.2000', 5, '18%', '0', '0.0000', '637.2000', '', '18.0000', NULL, 2, 'PCS', '30.0000', NULL, '18%', '0.0000', '0.0000', '97.2000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1352, 134, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '20.0000', '23.6000', '30.0000', 1, '108.0000', 5, '18%', '0', '0.0000', '708.0000', '', '20.0000', NULL, 2, 'PCS', '30.0000', NULL, '18%', '0.0000', '0.0000', '108.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1353, 135, 293, 'Buckle-1', 'Buckle', 'standard', 0, '20.0000', '23.6000', '30.0000', 1, '108.0000', 5, '18%', '0', '0.0000', '708.0000', '', '20.0000', NULL, 2, 'PCS', '30.0000', NULL, '18%', '0.0000', '0.0000', '108.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1354, 135, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '19.0000', '22.4200', '20.0000', 1, '68.4000', 5, '18%', '0', '0.0000', '448.4000', '', '19.0000', NULL, 2, 'PCS', '20.0000', NULL, '18%', '0.0000', '0.0000', '68.4000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1355, 136, 293, 'Buckle-1', 'Buckle', 'standard', 0, '20.0000', '23.6000', '20.0000', 1, '72.0000', 5, '18%', '0', '0.0000', '472.0000', '', '20.0000', NULL, 2, 'PCS', '20.0000', NULL, '18%', '0.0000', '0.0000', '72.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1356, 136, 614, 'BU-2', 'Buckle-2', 'standard', 0, '15.0000', '17.7000', '30.0000', 1, '81.0000', 5, '18%', '0', '0.0000', '531.0000', '', '15.0000', NULL, 2, 'PCS', '30.0000', NULL, '18%', '0.0000', '0.0000', '81.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1357, 136, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '18.0000', '21.2400', '30.0000', 1, '97.2000', 5, '18%', '0', '0.0000', '637.2000', '', '18.0000', NULL, 2, 'PCS', '30.0000', NULL, '18%', '0.0000', '0.0000', '97.2000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1358, 137, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '18.0000', '21.2400', '23.0000', 1, '74.5200', 5, '18%', '0', '0.0000', '488.5200', '', '18.0000', NULL, 2, 'PCS', '23.0000', NULL, '18%', '0.0000', '0.0000', '74.5200');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1359, 138, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '19.0000', '22.4200', '20.0000', 1, '68.4000', 5, '18%', '0', '0.0000', '448.4000', '', '19.0000', NULL, 2, 'PCS', '20.0000', NULL, '9%', '34.2000', '34.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1362, 140, 614, 'BU-2', 'Buckle-2', 'standard', 0, '15.2800', '18.0300', '1554.0000', 1, '4274.1216', 5, '18%', '0', '0.0000', '28019.2400', '', '15.2800', NULL, 2, 'PCS', '1554.0000', NULL, '18%', '0.0000', '0.0000', '4274.1216');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1363, 140, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '2070.0000', 1, '9315.0000', 5, '18%', '0', '0.0000', '61065.0000', '', '25.0000', NULL, 2, 'PCS', '2070.0000', NULL, '18%', '0.0000', '0.0000', '9315.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1364, 141, 614, 'BU-2', 'Buckle-2', 'standard', 0, '45.0000', '53.1000', '94.0000', 1, '761.4000', 5, '18%', '0', '0.0000', '4991.4000', '', '45.0000', NULL, 2, 'PCS', '94.0000', NULL, '18%', '0.0000', '0.0000', '761.4000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1365, 142, 620, 'G7-BELT-BOX', 'BELT BOX', 'standard', 0, '20.0000', '23.6000', '250.0000', 1, '900.0000', 5, '18%', '0', '0.0000', '5900.0000', '', '20.0000', NULL, 2, 'PCS', '250.0000', NULL, '18%', '0.0000', '0.0000', '900.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1386, 144, 786, 'G7-W-WLB-0043', 'G7 Ladies Hand Bag', 'standard', 0, '440.0000', '519.2000', '4.0000', 1, '316.8000', 5, '18%', '0', '0.0000', '2076.8000', '', '519.2000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '158.4000', '158.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1387, 144, 787, 'G7-M-BK-0019', 'G7 Back Pack', 'standard', 0, '440.0000', '519.2000', '5.0000', 1, '396.0000', 5, '18%', '0', '0.0000', '2596.0000', '', '519.2000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '198.0000', '198.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1388, 144, 789, 'G7-M-BK-0021', 'G7 Back Pack', 'standard', 0, '350.0000', '413.0000', '6.0000', 1, '378.0000', 5, '18%', '0', '0.0000', '2478.0000', '', '413.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '189.0000', '189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1389, 144, 790, 'G7-M-BK-0022', 'G7 Back Pack', 'standard', 0, '350.0000', '413.0000', '4.0000', 1, '252.0000', 5, '18%', '0', '0.0000', '1652.0000', '', '413.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '126.0000', '126.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1390, 144, 791, 'G7-M-BK-0023', 'G7 Back Pack', 'standard', 0, '350.0000', '413.0000', '2.0000', 1, '126.0000', 5, '18%', '0', '0.0000', '826.0000', '', '413.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '63.0000', '63.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1391, 144, 792, 'G7-M-BK-0024', 'G7 Back Pack', 'standard', 0, '350.0000', '413.0000', '2.0000', 1, '126.0000', 5, '18%', '0', '0.0000', '826.0000', '', '413.0000', NULL, 2, 'PCS', '2.0000', NULL, '9%', '63.0000', '63.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1392, 144, 793, 'G7-W-WLB-0044', 'G7 Ladies  combo hand Bag', 'standard', 0, '475.0000', '560.5000', '5.0000', 1, '427.5000', 5, '18%', '0', '0.0000', '2802.5000', '', '560.5000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '213.7500', '213.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1393, 144, 795, 'G7-W-WLB-0046', 'G7 Ladies hand Bag', 'standard', 0, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '0', '0.0000', '1888.0000', '', '472.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1394, 144, 796, 'G7-W-WLB-0047', 'G7 Ladies hand Bag', 'standard', 0, '440.0000', '519.2000', '4.0000', 1, '316.8000', 5, '18%', '0', '0.0000', '2076.8000', '', '519.2000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '158.4000', '158.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1395, 144, 797, 'G7-W-WLB-0048', 'G7 Ladies hand Bag', 'standard', 0, '400.0000', '472.0000', '4.0000', 1, '288.0000', 5, '18%', '0', '0.0000', '1888.0000', '', '472.0000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '144.0000', '144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1396, 144, 798, 'G7-W-WLB-0049', 'G7 Ladies combo  hand Bag', 'standard', 0, '440.0000', '519.2000', '6.0000', 1, '475.2000', 5, '18%', '0', '0.0000', '3115.2000', '', '519.2000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '237.6000', '237.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1397, 144, 799, 'G7-W-WLB-0050', 'G7 Ladies combo hand Bag', 'standard', 0, '440.0000', '519.2000', '6.0000', 1, '475.2000', 5, '18%', '0', '0.0000', '3115.2000', '', '519.2000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '237.6000', '237.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1398, 144, 801, 'G7-W-WLB-0052', 'G7 Ladies  hand Bag', 'standard', 0, '400.0000', '472.0000', '3.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '472.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1399, 144, 802, 'G7-W-WLB-0053', 'G7 Ladies  hand Bag', 'standard', 0, '360.0000', '424.8000', '5.0000', 1, '324.0000', 5, '18%', '0', '0.0000', '2124.0000', '', '424.8000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '162.0000', '162.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1400, 144, 803, 'G7-W-WLB-0054', 'G7 Ladies hand Bag', 'standard', 0, '440.0000', '519.2000', '4.0000', 1, '316.8000', 5, '18%', '0', '0.0000', '2076.8000', '', '519.2000', NULL, 2, 'PCS', '4.0000', NULL, '9%', '158.4000', '158.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1401, 144, 811, 'G7-W-WLB-0062', 'G7 Ladies SideBag', 'standard', 0, '500.0000', '590.0000', '3.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '590.0000', NULL, 2, 'PCS', '3.0000', NULL, '9%', '135.0000', '135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1402, 144, 578, 'G7-W-WLB-0039', 'G7 Ladies Bag', 'standard', 0, '300.0000', '354.0000', '1.0000', 1, '54.0000', 5, '18%', '0', '0.0000', '354.0000', '', '354.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '27.0000', '27.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1403, 143, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '20.0000', '23.6000', '600.0000', 1, '2160.0000', 5, '18%', '0', '0.0000', '14160.0000', '', '20.0000', NULL, 2, 'PCS', '600.0000', NULL, '18%', '0.0000', '0.0000', '2160.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1404, 143, 614, 'BU-2', 'Buckle-2', 'standard', 0, '15.0000', '17.7000', '110.0000', 1, '297.0000', 5, '18%', '0', '0.0000', '1947.0000', '', '15.0000', NULL, 2, 'PCS', '110.0000', NULL, '18%', '0.0000', '0.0000', '297.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1405, 143, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '50.0000', '59.0000', '600.0000', 1, '5400.0000', 5, '18%', '0', '0.0000', '35400.0000', '', '50.0000', NULL, 2, 'PCS', '600.0000', NULL, '18%', '0.0000', '0.0000', '5400.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1406, 143, 783, 'LHB-04', 'LADIES WALLET', 'standard', 0, '24.0000', '28.3200', '600.0000', 1, '2592.0000', 5, '18%', '0', '0.0000', '16992.0000', '', '24.0000', NULL, 2, 'PCS', '600.0000', NULL, '18%', '0.0000', '0.0000', '2592.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1407, 145, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '19.0000', '22.4200', '35.0000', 1, '119.7000', 5, '18%', '0', '0.0000', '784.7000', '', '19.0000', NULL, 2, 'PCS', '35.0000', NULL, '18%', '0.0000', '0.0000', '119.7000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1408, 145, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '20.0000', '23.6000', '40.0000', 1, '144.0000', 5, '18%', '0', '0.0000', '944.0000', '', '20.0000', NULL, 2, 'PCS', '40.0000', NULL, '18%', '0.0000', '0.0000', '144.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1409, 145, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '18.0000', '21.2400', '30.0000', 1, '97.2000', 5, '18%', '0', '0.0000', '637.2000', '', '18.0000', NULL, 2, 'PCS', '30.0000', NULL, '18%', '0.0000', '0.0000', '97.2000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1410, 146, 783, 'LHB-04', 'LADIES WALLET', 'standard', 0, '35.0000', '41.3000', '100.0000', 1, '630.0000', 5, '18%', '0', '0.0000', '4130.0000', '', '35.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '630.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1411, 147, 786, 'G7-W-WLB-0043', 'G7 Ladies Hand Bag', 'standard', 0, '440.0000', '519.2000', '-4.0000', 1, '-316.8000', 5, '18%', '0', '0.0000', '-2076.8000', '', '519.2000', 1386, 2, 'PCS', '-4.0000', NULL, '9%', '-158.4000', '-158.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1412, 147, 787, 'G7-M-BK-0019', 'G7 Back Pack', 'standard', 0, '440.0000', '519.2000', '-5.0000', 1, '-396.0000', 5, '18%', '0', '0.0000', '-2596.0000', '', '519.2000', 1387, 2, 'PCS', '-5.0000', NULL, '9%', '-198.0000', '-198.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1413, 147, 789, 'G7-M-BK-0021', 'G7 Back Pack', 'standard', 0, '350.0000', '413.0000', '-6.0000', 1, '-378.0000', 5, '18%', '0', '0.0000', '-2478.0000', '', '413.0000', 1388, 2, 'PCS', '-6.0000', NULL, '9%', '-189.0000', '-189.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1414, 147, 790, 'G7-M-BK-0022', 'G7 Back Pack', 'standard', 0, '350.0000', '413.0000', '-3.0000', 1, '-189.0000', 5, '18%', '0', '0.0000', '-1239.0000', '', '413.0000', 1389, 2, 'PCS', '-3.0000', NULL, '9%', '-94.5000', '-94.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1415, 147, 791, 'G7-M-BK-0023', 'G7 Back Pack', 'standard', 0, '350.0000', '413.0000', '-2.0000', 1, '-126.0000', 5, '18%', '0', '0.0000', '-826.0000', '', '413.0000', 1390, 2, 'PCS', '-2.0000', NULL, '9%', '-63.0000', '-63.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1416, 147, 792, 'G7-M-BK-0024', 'G7 Back Pack', 'standard', 0, '350.0000', '413.0000', '-2.0000', 1, '-126.0000', 5, '18%', '0', '0.0000', '-826.0000', '', '413.0000', 1391, 2, 'PCS', '-2.0000', NULL, '9%', '-63.0000', '-63.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1417, 147, 793, 'G7-W-WLB-0044', 'G7 Ladies  combo hand Bag', 'standard', 0, '475.0000', '560.5000', '-5.0000', 1, '-427.5000', 5, '18%', '0', '0.0000', '-2802.5000', '', '560.5000', 1392, 2, 'PCS', '-5.0000', NULL, '9%', '-213.7500', '-213.7500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1418, 147, 795, 'G7-W-WLB-0046', 'G7 Ladies hand Bag', 'standard', 0, '400.0000', '472.0000', '-4.0000', 1, '-288.0000', 5, '18%', '0', '0.0000', '-1888.0000', '', '472.0000', 1393, 2, 'PCS', '-4.0000', NULL, '9%', '-144.0000', '-144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1419, 147, 796, 'G7-W-WLB-0047', 'G7 Ladies hand Bag', 'standard', 0, '440.0000', '519.2000', '-4.0000', 1, '-316.8000', 5, '18%', '0', '0.0000', '-2076.8000', '', '519.2000', 1394, 2, 'PCS', '-4.0000', NULL, '9%', '-158.4000', '-158.4000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1420, 147, 797, 'G7-W-WLB-0048', 'G7 Ladies hand Bag', 'standard', 0, '400.0000', '472.0000', '-4.0000', 1, '-288.0000', 5, '18%', '0', '0.0000', '-1888.0000', '', '472.0000', 1395, 2, 'PCS', '-4.0000', NULL, '9%', '-144.0000', '-144.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1421, 147, 798, 'G7-W-WLB-0049', 'G7 Ladies combo  hand Bag', 'standard', 0, '440.0000', '519.2000', '-6.0000', 1, '-475.2000', 5, '18%', '0', '0.0000', '-3115.2000', '', '519.2000', 1396, 2, 'PCS', '-6.0000', NULL, '9%', '-237.6000', '-237.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1422, 147, 799, 'G7-W-WLB-0050', 'G7 Ladies combo hand Bag', 'standard', 0, '440.0000', '519.2000', '-6.0000', 1, '-475.2000', 5, '18%', '0', '0.0000', '-3115.2000', '', '519.2000', 1397, 2, 'PCS', '-6.0000', NULL, '9%', '-237.6000', '-237.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1423, 147, 801, 'G7-W-WLB-0052', 'G7 Ladies  hand Bag', 'standard', 0, '400.0000', '472.0000', '-3.0000', 1, '-216.0000', 5, '18%', '0', '0.0000', '-1416.0000', '', '472.0000', 1398, 2, 'PCS', '-3.0000', NULL, '9%', '-108.0000', '-108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1424, 147, 802, 'G7-W-WLB-0053', 'G7 Ladies  hand Bag', 'standard', 0, '360.0000', '424.8000', '-4.0000', 1, '-259.2000', 5, '18%', '0', '0.0000', '-1699.2000', '', '424.8000', 1399, 2, 'PCS', '-4.0000', NULL, '9%', '-129.6000', '-129.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1425, 147, 803, 'G7-W-WLB-0054', 'G7 Ladies hand Bag', 'standard', 0, '440.0000', '519.2000', '-3.0000', 1, '-237.6000', 5, '18%', '0', '0.0000', '-1557.6000', '', '519.2000', 1400, 2, 'PCS', '-3.0000', NULL, '9%', '-118.8000', '-118.8000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1426, 147, 811, 'G7-W-WLB-0062', 'G7 Ladies SideBag', 'standard', 0, '500.0000', '590.0000', '-3.0000', 1, '-270.0000', 5, '18%', '0', '0.0000', '-1770.0000', '', '590.0000', 1401, 2, 'PCS', '-3.0000', NULL, '9%', '-135.0000', '-135.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1427, 147, 578, 'G7-W-WLB-0039', 'G7 Ladies Bag', 'standard', 0, '300.0000', '354.0000', '-1.0000', 1, '-54.0000', 5, '18%', '0', '0.0000', '-354.0000', '', '354.0000', 1402, 2, 'PCS', '-1.0000', NULL, '9%', '-27.0000', '-27.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1428, 148, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '22.0000', '25.9600', '50.0000', 1, '198.0000', 5, '18%', '0', '0.0000', '1298.0000', '', '22.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '198.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1438, 150, 875, 'BU-3', 'Buckle-3', 'standard', 0, '23.0000', '27.1400', '40.0000', 1, '165.6000', 5, '18%', '0', '0.0000', '1085.6000', '', '23.0000', NULL, 2, 'PCS', '40.0000', NULL, '18%', '0.0000', '0.0000', '165.6000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1439, 150, 842, 'BU-0001', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '21.1864', '25.0000', '40.0000', 1, '152.5440', 5, '18%', '0', '0.0000', '1000.0000', '', '25.0000', NULL, 2, 'PCS', '40.0000', NULL, '18%', '0.0000', '0.0000', '152.5440');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1440, 151, 875, 'BU-3', 'Buckle-3', 'standard', 0, '20.0000', '23.6000', '39.0000', 1, '140.4000', 5, '18%', '0', '0.0000', '920.4000', '', '20.0000', NULL, 2, 'PCS', '39.0000', NULL, '18%', '0.0000', '0.0000', '140.4000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1441, 152, 877, 'LWLT-1', 'GENTS WALLET', 'standard', 0, '30.0000', '35.4000', '50.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '30.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '270.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1471, 153, 875, 'BU-3', 'Buckle-3', 'standard', 0, '25.0000', '29.5000', '500.0000', 1, '2250.0000', 5, '18%', '0', '0.0000', '14750.0000', '', '25.0000', NULL, 2, 'PCS', '500.0000', NULL, '18%', '0.0000', '0.0000', '2250.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1472, 153, 875, 'BU-3', 'Buckle-3', 'standard', 0, '28.0000', '33.0400', '600.0000', 1, '3024.0000', 5, '18%', '0', '0.0000', '19824.0000', '', '28.0000', NULL, 2, 'PCS', '600.0000', NULL, '18%', '0.0000', '0.0000', '3024.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1473, 153, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '400.0000', 1, '1800.0000', 5, '18%', '0', '0.0000', '11800.0000', '', '25.0000', NULL, 2, 'PCS', '400.0000', NULL, '18%', '0.0000', '0.0000', '1800.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1474, 153, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '500.0000', 1, '2250.0000', 5, '18%', '0', '0.0000', '14750.0000', '', '25.0000', NULL, 2, 'PCS', '500.0000', NULL, '18%', '0.0000', '0.0000', '2250.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1475, 153, 875, 'BU-3', 'Buckle-3', 'standard', 0, '18.0000', '21.2400', '150.0000', 1, '486.0000', 5, '18%', '0', '0.0000', '3186.0000', '', '18.0000', NULL, 2, 'PCS', '150.0000', NULL, '18%', '0.0000', '0.0000', '486.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1491, 154, 891, 'JI-1', 'LEDIES BEG-838', 'standard', NULL, '240.0000', '283.2000', '18.0000', 1, '777.6000', 5, '18%', '0', '0.0000', '5097.6000', '', '240.0000', NULL, 2, 'PCS', '18.0000', NULL, '9%', '388.8000', '388.8000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1492, 154, 892, 'JI-2', 'CHAIN WALLET-16070', 'standard', NULL, '650.0000', '767.0000', '6.0000', 1, '702.0000', 5, '18%', '0', '0.0000', '4602.0000', '', '650.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '351.0000', '351.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1493, 154, 893, 'JI-3', 'BEG-1688', 'standard', NULL, '290.0000', '342.2000', '12.0000', 1, '626.4000', 5, '18%', '0', '0.0000', '4106.4000', '', '290.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '313.2000', '313.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1494, 154, 894, 'JI-4', 'BEG-19101', 'standard', NULL, '390.0000', '460.2000', '12.0000', 1, '842.4000', 5, '18%', '0', '0.0000', '5522.4000', '', '390.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '421.2000', '421.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1495, 154, 895, 'JI-5', 'BEG-7155', 'standard', NULL, '300.0000', '354.0000', '12.0000', 1, '648.0000', 5, '18%', '0', '0.0000', '4248.0000', '', '300.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1496, 154, 896, 'JI-6', 'BEG-939', 'standard', NULL, '390.0000', '460.2000', '6.0000', 1, '421.2000', 5, '18%', '0', '0.0000', '2761.2000', '', '390.0000', NULL, 2, 'PCS', '6.0000', NULL, '9%', '210.6000', '210.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1497, 154, 897, 'JI-7', 'Back Pack19063', 'standard', NULL, '250.0000', '295.0000', '20.0000', 1, '900.0000', 5, '18%', '0', '0.0000', '5900.0000', '', '250.0000', NULL, 2, 'PCS', '20.0000', NULL, '9%', '450.0000', '450.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1498, 154, 898, 'JI-8', 'BEG-7162', 'standard', NULL, '80.0000', '94.4000', '15.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '80.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1499, 154, 899, 'JI-9', 'BEG-18018', 'standard', NULL, '300.0000', '354.0000', '12.0000', 1, '648.0000', 5, '18%', '0', '0.0000', '4248.0000', '', '300.0000', NULL, 2, 'PCS', '12.0000', NULL, '9%', '324.0000', '324.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1500, 154, 900, 'JI-10', 'BEG-860', 'standard', NULL, '80.0000', '94.4000', '15.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '80.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1501, 154, 901, 'JI-11', 'BEG-856', 'standard', NULL, '250.0000', '295.0000', '25.0000', 1, '1125.0000', 5, '18%', '0', '0.0000', '7375.0000', '', '250.0000', NULL, 2, 'PCS', '25.0000', NULL, '9%', '562.5000', '562.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1502, 154, 902, 'JI-12', 'BEG-616', 'standard', NULL, '240.0000', '283.2000', '18.0000', 1, '777.6000', 5, '18%', '0', '0.0000', '5097.6000', '', '240.0000', NULL, 2, 'PCS', '18.0000', NULL, '9%', '388.8000', '388.8000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1503, 154, 903, 'JI-13', 'LEDIES WALLET-19008', 'standard', NULL, '80.0000', '94.4000', '15.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '80.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1504, 154, 904, 'JI-14', 'LEDIES WALLET-16039', 'standard', NULL, '80.0000', '94.4000', '15.0000', 1, '216.0000', 5, '18%', '0', '0.0000', '1416.0000', '', '80.0000', NULL, 2, 'PCS', '15.0000', NULL, '9%', '108.0000', '108.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1505, 154, 905, 'JI-15', 'BACK PACK-686', 'standard', NULL, '250.0000', '295.0000', '5.0000', 1, '225.0000', 5, '18%', '0', '0.0000', '1475.0000', '', '250.0000', NULL, 2, 'PCS', '5.0000', NULL, '9%', '112.5000', '112.5000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1506, 155, 907, 'JI-16', 'JI PURSE', 'standard', NULL, '300.0000', '354.0000', '11.0000', 1, '594.0000', 5, '18%', '0', '0.0000', '3894.0000', '', '300.0000', NULL, 2, 'PCS', '11.0000', NULL, '9%', '297.0000', '297.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1507, 155, 908, 'JI-17', 'JI PURSE', 'standard', 0, '290.0000', '342.2000', '8.0000', 1, '417.6000', 5, '18%', '0', '0.0000', '2737.6000', '', '290.0000', NULL, 2, 'PCS', '8.0000', NULL, '9%', '208.8000', '208.8000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1510, 156, 909, 'LS-007', 'LS Slipper', 'standard', NULL, '749.0000', '883.8200', '21.0000', 1, '2831.2200', 5, '18%', '0', '0.0000', '18560.2200', '', '749.0000', NULL, 2, 'PCS', '21.0000', NULL, '18%', '0.0000', '0.0000', '2831.2200');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1511, 156, 910, 'LS-009', 'LS Slipper', 'standard', 0, '798.8600', '942.6500', '32.0000', 1, '4601.4336', 5, '18%', '0', '0.0000', '30164.9500', '', '798.8600', NULL, 2, 'PCS', '32.0000', NULL, '18%', '0.0000', '0.0000', '4601.4336');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1512, 157, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '290.0000', 1, '1305.0000', 5, '18%', '0', '0.0000', '8555.0000', '', '25.0000', NULL, 2, 'PCS', '290.0000', NULL, '18%', '0.0000', '0.0000', '1305.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1513, 157, 911, 'BU-4', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '15.0000', '17.7000', '350.0000', 1, '945.0000', 5, '18%', '0', '0.0000', '6195.0000', '', '15.0000', NULL, 2, 'PCS', '350.0000', NULL, '18%', '0.0000', '0.0000', '945.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1514, 157, 875, 'BU-3', 'Buckle-3', 'standard', 0, '18.0000', '21.2400', '250.0000', 1, '810.0000', 5, '18%', '0', '0.0000', '5310.0000', '', '18.0000', NULL, 2, 'PCS', '250.0000', NULL, '18%', '0.0000', '0.0000', '810.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1515, 158, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '50.0000', 1, '225.0000', 5, '18%', '0', '0.0000', '1475.0000', '', '25.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '225.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1516, 158, 911, 'BU-4', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '20.0000', '23.6000', '65.0000', 1, '234.0000', 5, '18%', '0', '0.0000', '1534.0000', '', '20.0000', NULL, 2, 'PCS', '65.0000', NULL, '18%', '0.0000', '0.0000', '234.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1517, 159, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '120.0000', 1, '540.0000', 5, '18%', '0', '0.0000', '3540.0000', '', '25.0000', NULL, 2, 'PCS', '120.0000', NULL, '18%', '0.0000', '0.0000', '540.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1518, 159, 875, 'BU-3', 'Buckle-3', 'standard', 0, '25.0000', '29.5000', '110.0000', 1, '495.0000', 5, '18%', '0', '0.0000', '3245.0000', '', '25.0000', NULL, 2, 'PCS', '110.0000', NULL, '18%', '0.0000', '0.0000', '495.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1519, 159, 875, 'BU-3', 'Buckle-3', 'standard', 0, '20.0000', '23.6000', '100.0000', 1, '360.0000', 5, '18%', '0', '0.0000', '2360.0000', '', '20.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '360.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1520, 160, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '600.0000', 1, '2700.0000', 5, '18%', '0', '0.0000', '17700.0000', '', '25.0000', NULL, 2, 'PCS', '600.0000', NULL, '18%', '0.0000', '0.0000', '2700.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1521, 160, 875, 'BU-3', 'Buckle-3', 'standard', 0, '20.0000', '23.6000', '800.0000', 1, '2880.0000', 5, '18%', '0', '0.0000', '18880.0000', '', '20.0000', NULL, 2, 'PCS', '800.0000', NULL, '18%', '0.0000', '0.0000', '2880.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1522, 160, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '500.0000', 1, '2250.0000', 5, '18%', '0', '0.0000', '14750.0000', '', '25.0000', NULL, 2, 'PCS', '500.0000', NULL, '18%', '0.0000', '0.0000', '2250.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1523, 160, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '28.0000', '33.0400', '500.0000', 1, '2520.0000', 5, '18%', '0', '0.0000', '16520.0000', '', '28.0000', NULL, 2, 'PCS', '500.0000', NULL, '18%', '0.0000', '0.0000', '2520.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1524, 160, 875, 'BU-3', 'Buckle-3', 'standard', 0, '25.0000', '29.5000', '100.0000', 1, '450.0000', 5, '18%', '0', '0.0000', '2950.0000', '', '25.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '450.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1525, 160, 875, 'BU-3', 'Buckle-3', 'standard', 0, '20.0000', '23.6000', '116.0000', 1, '417.6000', 5, '18%', '0', '0.0000', '2737.6000', '', '20.0000', NULL, 2, 'PCS', '116.0000', NULL, '18%', '0.0000', '0.0000', '417.6000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1526, 161, 783, 'LHB-04', 'LADIES WALLET', 'standard', 0, '85.0000', '100.3000', '500.0000', 1, '7650.0000', 5, '18%', '0', '0.0000', '50150.0000', '', '85.0000', NULL, 2, 'PCS', '500.0000', NULL, '9%', '3825.0000', '3825.0000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1527, 161, 617, 'Ji-bkl-0001', 'Belt with buckle', 'standard', 0, '170.0000', '200.6000', '72.0000', 1, '2203.2000', 5, '18%', '0', '0.0000', '14443.2000', '', '170.0000', NULL, 2, 'PCS', '72.0000', NULL, '9%', '1101.6000', '1101.6000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1528, 161, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '120.0000', '141.6000', '36.0000', 1, '777.6000', 5, '18%', '0', '0.0000', '5097.6000', '', '120.0000', NULL, 2, 'PCS', '36.0000', NULL, '9%', '388.8000', '388.8000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1529, 161, 4294967295, 'JI WALEET', '001', 'manual', 0, '85.0000', '100.3000', '48.0000', 1, '734.4000', 5, '18%', '0', '0.0000', '4814.4000', '', '100.3000', NULL, NULL, NULL, '48.0000', NULL, '9%', '367.2000', '367.2000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1530, 162, 294, 'Buckles-1', 'Buckls(metal)', 'standard', 0, '25.0000', '29.5000', '100.0000', 1, '450.0000', 5, '18%', '0', '0.0000', '2950.0000', '', '25.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '450.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1531, 162, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '90.0000', '106.2000', '100.0000', 1, '1620.0000', 5, '18%', '0', '0.0000', '10620.0000', '', '90.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '1620.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1532, 162, 842, 'BU-0001', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '16.9492', '20.0000', '85.0000', 1, '259.3180', 5, '18%', '0', '0.0000', '1700.0000', '', '20.0000', NULL, 2, 'PCS', '85.0000', NULL, '18%', '0.0000', '0.0000', '259.3180');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1533, 163, 783, 'LHB-04', 'LADIES WALLET', 'standard', 0, '30.0000', '35.4000', '280.0000', 1, '1512.0000', 5, '18%', '0', '0.0000', '9912.0000', '', '30.0000', NULL, 2, 'PCS', '280.0000', NULL, '18%', '0.0000', '0.0000', '1512.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1534, 164, 780, 'LHB-01', 'LADIES HAND BAG', 'standard', 0, '50.0000', '59.0000', '160.0000', 1, '1440.0000', 5, '18%', '0', '0.0000', '9440.0000', '', '50.0000', NULL, 2, 'PCS', '160.0000', NULL, '18%', '0.0000', '0.0000', '1440.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1535, 165, 875, 'BU-3', 'Buckle-3', 'standard', 0, '20.0000', '23.6000', '400.0000', 1, '1440.0000', 5, '18%', '0', '0.0000', '9440.0000', '', '20.0000', NULL, 2, 'PCS', '400.0000', NULL, '18%', '0.0000', '0.0000', '1440.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1536, 166, 875, 'BU-3', 'Buckle-3', 'standard', 0, '30.0000', '35.4000', '100.0000', 1, '540.0000', 5, '18%', '0', '0.0000', '3540.0000', '', '30.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '540.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1537, 166, 911, 'BU-4', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '25.0000', '29.5000', '100.0000', 1, '450.0000', 5, '18%', '0', '0.0000', '2950.0000', '', '25.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '450.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1538, 166, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '70.0000', '82.6000', '100.0000', 1, '1260.0000', 5, '18%', '0', '0.0000', '8260.0000', '', '70.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '1260.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1539, 166, 875, 'BU-3', 'Buckle-3', 'standard', 0, '30.0000', '35.4000', '100.0000', 1, '540.0000', 5, '18%', '0', '0.0000', '3540.0000', '', '30.0000', NULL, 2, 'PCS', '100.0000', NULL, '18%', '0.0000', '0.0000', '540.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1540, 166, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '80.0000', '94.4000', '80.0000', 1, '1152.0000', 5, '18%', '0', '0.0000', '7552.0000', '', '80.0000', NULL, 2, 'PCS', '80.0000', NULL, '18%', '0.0000', '0.0000', '1152.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1545, 167, 875, 'BU-3', 'Buckle-3', 'standard', 0, '30.0000', '35.4000', '68.0000', 1, '367.2000', 5, '18%', '0', '0.0000', '2407.2000', '', '30.0000', NULL, 2, 'PCS', '68.0000', NULL, '18%', '0.0000', '0.0000', '367.2000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1546, 167, 911, 'BU-4', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '20.0000', '23.6000', '75.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '20.0000', NULL, 2, 'PCS', '75.0000', NULL, '18%', '0.0000', '0.0000', '270.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1547, 167, 842, 'BU-0001', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '21.1864', '25.0000', '90.0000', 1, '343.2240', 5, '18%', '0', '0.0000', '2250.0000', '', '25.0000', NULL, 2, 'PCS', '90.0000', NULL, '18%', '0.0000', '0.0000', '343.2240');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1548, 167, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '60.0000', '70.8000', '50.0000', 1, '540.0000', 5, '18%', '0', '0.0000', '3540.0000', '', '60.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '540.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1549, 168, 842, 'BU-0001', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '21.1864', '25.0000', '70.0000', 1, '266.9520', 5, '18%', '0', '0.0000', '1750.0000', '', '25.0000', NULL, 2, 'PCS', '70.0000', NULL, '18%', '0.0000', '0.0000', '266.9520');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1550, 168, 842, 'BU-0001', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '21.1864', '25.0000', '70.0000', 1, '266.9520', 5, '18%', '0', '0.0000', '1750.0000', '', '25.0000', NULL, 2, 'PCS', '70.0000', NULL, '18%', '0.0000', '0.0000', '266.9520');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1551, 168, 911, 'BU-4', 'BUCKLE(FOR WAIST BELT)', 'standard', 0, '20.0000', '23.6000', '75.0000', 1, '270.0000', 5, '18%', '0', '0.0000', '1770.0000', '', '20.0000', NULL, 2, 'PCS', '75.0000', NULL, '18%', '0.0000', '0.0000', '270.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1552, 168, 295, 'JI-PU-BWB-1', 'PU Belt With Buckle(PI)', 'standard', 0, '80.0000', '94.4000', '50.0000', 1, '720.0000', 5, '18%', '0', '0.0000', '4720.0000', '', '80.0000', NULL, 2, 'PCS', '50.0000', NULL, '18%', '0.0000', '0.0000', '720.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1553, 169, 752, 'G7-W-SPRAY-0029', 'G7 ACTIVE  DEO', 'standard', NULL, '211.0169', '249.0000', '1.0000', 1, '37.9831', 5, '18%', '0', '0.0000', '249.0000', '', '249.0000', NULL, 2, 'PCS', '1.0000', '', '9%', '18.9916', '18.9916', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1554, 169, 294, 'Buckles-1', 'Buckls(metal)', 'standard', NULL, '15.0000', '17.7000', '1.0000', 1, '2.7000', 5, '18%', '0', '0.0000', '17.7000', '', '15.0000', NULL, 2, 'PCS', '1.0000', '', '9%', '1.3500', '1.3500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1555, 169, 875, 'BU-3', 'Buckle-3', 'standard', NULL, '10.0000', '11.8000', '1.0000', 1, '1.8000', 5, '18%', '0', '0.0000', '11.8000', '', '10.0000', NULL, 2, 'PCS', '1.0000', '', '9%', '0.9000', '0.9000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1556, 169, 620, 'G7-BELT-BOX', 'BELT BOX', 'standard', NULL, '15.0000', '17.7000', '1.0000', 1, '2.7000', 5, '18%', '0', '0.0000', '17.7000', '', '15.0000', NULL, 2, 'PCS', '1.0000', '', '9%', '1.3500', '1.3500', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1557, 170, 4, 'G7-M-OB-000001', 'G7 Office Bag', 'standard', 8, '2966.1017', '3500.0000', '1.0000', 1, '533.8983', 5, '18%', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '266.9492', '266.9492', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1558, 170, 9, 'G7-M-SB-000003', 'G7 Side Bag', 'standard', 16, '1559.3220', '1840.0000', '1.0000', 1, '280.6780', 5, '18%', '0', '0.0000', '1840.0000', '', '1840.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '140.3390', '140.3390', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1559, 170, 8, 'G7-M-SB-000002', 'G7 Side Bag', 'standard', 15, '1559.3220', '1840.0000', '1.0000', 1, '280.6780', 5, '18%', '0', '0.0000', '1840.0000', '', '1840.0000', NULL, 2, 'PCS', '1.0000', NULL, '9%', '140.3390', '140.3390', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1560, 171, 620, 'G7-BELT-BOX', 'BELT BOX', 'standard', NULL, '15.0000', '17.7000', '5.0000', 1, '13.5000', 5, '18%', '0', '0.0000', '88.5000', '', '15.0000', NULL, 2, 'PCS', '5.0000', '', '18%', '0.0000', '0.0000', '13.5000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1561, 172, 8, 'G7-M-SB-000002', 'G7 Side Bag', 'standard', 15, '1559.3220', '1840.0000', '1.0000', 1, '280.6780', 5, '18%', '0', '0.0000', '1840.0000', '', '1840.0000', NULL, 2, 'PCS', '1.0000', '', '9%', '140.3390', '140.3390', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1562, 173, 875, 'BU-3', 'Buckle-3', 'standard', NULL, '10.0000', '11.8000', '1.0000', 1, '1.8000', 5, '18%', '0', '0.0000', '11.8000', '', '10.0000', NULL, 2, 'PCS', '1.0000', '', '9%', '0.9000', '0.9000', '0.0000');
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1563, 173, 620, 'G7-BELT-BOX', 'BELT BOX', 'standard', NULL, '15.0000', '17.7000', '1.0000', 1, '2.7000', 5, '18%', '0', '0.0000', '17.7000', '', '15.0000', NULL, 2, 'PCS', '1.0000', '', '9%', '1.3500', '1.3500', '0.0000');


#
# TABLE STRUCTURE FOR: sma_sales
#

DROP TABLE IF EXISTS `sma_sales`;

CREATE TABLE `sma_sales` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `staff_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT '0.0000',
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT '0.0000',
  `order_discount` decimal(25,4) DEFAULT '0.0000',
  `product_tax` decimal(25,4) DEFAULT '0.0000',
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT '0.0000',
  `total_tax` decimal(25,4) DEFAULT '0.0000',
  `shipping` decimal(25,4) DEFAULT '0.0000',
  `grand_total` decimal(25,4) NOT NULL,
  `sale_status` varchar(20) DEFAULT NULL,
  `payment_status` varchar(20) DEFAULT NULL,
  `payment_term` tinyint(4) DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `total_items` smallint(6) DEFAULT NULL,
  `pos` tinyint(1) NOT NULL DEFAULT '0',
  `paid` decimal(25,4) DEFAULT '0.0000',
  `return_id` int(11) DEFAULT NULL,
  `surcharge` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `attachment` varchar(55) DEFAULT NULL,
  `return_sale_ref` varchar(55) DEFAULT NULL,
  `sale_id` int(11) DEFAULT NULL,
  `return_sale_total` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `rounding` decimal(10,4) DEFAULT NULL,
  `suspend_note` varchar(255) DEFAULT NULL,
  `api` tinyint(1) DEFAULT '0',
  `shop` tinyint(1) DEFAULT '0',
  `address_id` int(11) DEFAULT NULL,
  `reserve_id` int(11) DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `manual_payment` varchar(55) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  `payment_method` varchar(55) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=174 DEFAULT CHARSET=utf8;

INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (9, '2018-10-21 06:16:00', 'SALE2018/10/0001', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '9213.5592', '12168.0000', '', '12168.0000', '0.0000', '1658.4408', 1, '0.0000', '1658.4408', '0.0000', '10872.0000', 'completed', 'paid', 0, NULL, 1, 1, '2018-10-23 10:28:48', 24, 0, '10872.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0f63c3b1efc2119b240db720dfc7102af8639cb5db4f13bf17aa33b9cf014ee8', NULL, '829.2204', '829.2204', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (10, '2018-10-21 06:35:00', 'SALE2018/10/0002', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '9600.0000', '16272.0000', '', '16272.0000', '0.0000', '1728.0000', 1, '0.0000', '1728.0000', '0.0000', '11328.0000', 'completed', 'paid', 0, NULL, 1, 1, '2018-10-23 10:51:21', 24, 0, '11328.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd7a580f8f3e99b7bdf92a9e9320eb628843d622ad3baa2c5d08503073b22094d', NULL, '864.0000', '864.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (11, '2018-10-21 06:51:00', 'SALE2018/10/0003', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '21600.0000', '36612.0000', '', '36612.0000', '0.0000', '3888.0000', 1, '0.0000', '3888.0000', '0.0000', '25488.0000', 'completed', 'paid', 0, NULL, 1, 1, '2018-10-23 12:14:54', 54, 0, '25488.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ef84e5fad77ecdc1236dbea0805b3db2ebe71c429c96cae6656ac1b8b969a31b', NULL, '1944.0000', '1944.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (36, '2018-10-23 11:00:00', 'SALE2018/10/0028', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '16200.0000', '16884.0000', '', '16884.0000', '0.0000', '2916.0000', 1, '0.0000', '2916.0000', '0.0000', '19116.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 72, 0, '19116.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '23e75d59890a28385d4726ce0acabca716dc3bbd778df72329e0081cc800b8fe', NULL, '1458.0000', '1458.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (37, '2018-10-23 11:22:00', 'SALE2018/10/0029', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '15975.0000', '32159.5000', '', '32159.5000', '0.0000', '2875.5000', 1, '0.0000', '2875.5000', '0.0000', '18850.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 49, 0, '18850.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '601cbeb60f3f6eb0150fe21b0cf36d67d850d034464f5679a0aef95ed242c3c7', NULL, '1437.7500', '1437.7500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (39, '2018-10-23 12:41:00', 'SALE2018/10/0031', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '12000.0000', '21540.0000', '', '21540.0000', '0.0000', '2160.0000', 1, '0.0000', '2160.0000', '0.0000', '14160.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 30, 0, '14160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ec0cc2bb37c88dce020913b78dff294fbaae211eb44cc29da0bfe4106ac7f604', NULL, '1080.0000', '1080.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (40, '2018-10-23 12:57:00', 'SALE2018/10/0032', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '10200.0000', '17964.0000', '', '17964.0000', '0.0000', '1836.0000', 1, '0.0000', '1836.0000', '0.0000', '12036.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 24, 0, '12036.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6a7a283955930e83ed2677684219f671e9d6a079f4f77c00268e4a155ea733b3', NULL, '918.0000', '918.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (41, '2018-10-23 13:03:00', 'SALE2018/10/0033', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '20160.0000', '39871.2000', '', '39871.2000', '0.0000', '3628.8000', 1, '0.0000', '3628.8000', '0.0000', '23788.8000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 54, 0, '23788.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4912378f08dc0e898b6e6ebb4b185a1c1d411fbe1903c90e9a3b9457dfe8bac1', NULL, '1814.4000', '1814.4000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (42, '2018-10-23 13:24:00', 'SALE2018/10/0034', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '16500.0000', '32730.0000', '', '32730.0000', '0.0000', '2970.0000', 1, '0.0000', '2970.0000', '0.0000', '19470.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 42, 0, '19470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6defe71cdad670ffc3ea512ff73a9124728f237deee6182e1b21cd426dd92945', NULL, '1485.0000', '1485.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (43, '2018-10-23 13:47:00', 'SALE2018/10/0035', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '6930.0000', '13242.6000', '', '13242.6000', '0.0000', '1247.4000', 1, '0.0000', '1247.4000', '0.0000', '8177.4000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 18, 0, '8177.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '09d7f86debf8d42fb3a62f55175c1dc972d99febaff4cadb318838e8a604e066', NULL, '623.7000', '623.7000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (44, '2018-10-23 13:53:00', 'SALE2018/10/0036', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '16125.0000', '27842.5000', '', '27842.5000', '0.0000', '2902.5000', 1, '0.0000', '2902.5000', '0.0000', '19027.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 43, 0, '19027.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '839f69cc6f22073353515196534481a0e304201b78f51cf42747f3cbf45dce70', NULL, '1451.2500', '1451.2500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (45, '2018-10-23 13:57:00', 'SALE2018/10/0037', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '6900.0000', '14058.0000', '', '14058.0000', '0.0000', '1242.0000', 1, '0.0000', '1242.0000', '0.0000', '8142.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 18, 0, '8142.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e92906c02ef8142054741f6f24fb82d5009a7ad796cb844047181865385b0be9', NULL, '621.0000', '621.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (46, '2018-10-23 14:04:00', 'SALE2018/10/0038', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '7200.0000', '14004.0000', '', '14004.0000', '0.0000', '1296.0000', 1, '0.0000', '1296.0000', '0.0000', '8496.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 18, 0, '8496.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '033af742a4ec0684f0b8db721cd6d46f4d2ab24a29d7c1d5731cd718518ccace', NULL, '648.0000', '648.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (47, '2018-10-23 14:09:00', 'SALE2018/10/0039', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '26700.0000', '52794.0000', '', '52794.0000', '0.0000', '4806.0000', 1, '0.0000', '4806.0000', '0.0000', '31506.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 72, 0, '31506.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '918e477d49395656cd9f12e46095e0f65633b90536e16d1a88090e870db19463', NULL, '2403.0000', '2403.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (48, '2018-10-23 14:18:00', 'SALE2018/10/0040', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '24600.0000', '45972.0000', '', '45972.0000', '0.0000', '4428.0000', 1, '0.0000', '4428.0000', '0.0000', '29028.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 66, 0, '29028.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '309a12cd94bdcae6b27ce589fa0149527e7c44ebeef6d75086286771a3870fc5', NULL, '2214.0000', '2214.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (49, '2018-10-23 14:08:00', 'SALE2018/10/0041', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '10200.0000', '22164.0000', '', '22164.0000', '0.0000', '1836.0000', 1, '0.0000', '1836.0000', '0.0000', '12036.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 36, 0, '12036.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8978b9ac83e23b644fd8f4436edf85adf16ac6b9133ad66ca9d8b26894a44718', NULL, '918.0000', '918.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (50, '2018-10-23 14:24:00', 'SALE2018/10/0042', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '24450.0000', '46749.0000', '', '46749.0000', '0.0000', '4401.0000', 1, '0.0000', '4401.0000', '0.0000', '28851.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 72, 0, '28851.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '558eaef5a5bf3e979c89e2835237b4bc949aed93197292c2208769edf6332d12', NULL, '2200.5000', '2200.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (51, '2018-10-23 14:33:00', 'SALE2018/10/0043', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '26400.0000', '54828.0000', '', '54828.0000', '0.0000', '4752.0000', 1, '0.0000', '4752.0000', '0.0000', '31152.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 78, 0, '31152.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'dd15bb460401a0b8f3be2e73b4394ec3b60b89a192abf8f4fa6b0f040318d6b4', NULL, '2376.0000', '2376.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (52, '2018-10-23 14:47:00', 'SALE2018/10/0044', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '25200.0000', '50844.0000', '', '50844.0000', '0.0000', '4536.0000', 1, '0.0000', '4536.0000', '0.0000', '29736.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 66, 0, '29736.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c5afbf5eaba2450ccb273b9534e82274cc1030c9b4450c06811ea614dc8934b1', NULL, '2268.0000', '2268.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (53, '2018-10-23 15:17:00', 'SALE2018/10/0045', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '47700.0000', '97494.0000', '', '97494.0000', '0.0000', '8586.0000', 1, '0.0000', '8586.0000', '0.0000', '56286.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 126, 0, '56286.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4a9805a78f04461df867c20f13a5f73cc6a62d6e2a81b93cb901693004208096', NULL, '4293.0000', '4293.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (54, '2018-10-23 15:16:00', 'SALE2018/10/0046', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '34200.0000', '69564.0000', '', '69564.0000', '0.0000', '6156.0000', 1, '0.0000', '6156.0000', '0.0000', '40356.0000', 'completed', 'paid', 7, '2018-10-30', 1, NULL, NULL, 66, 0, '40356.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9ae36f8097db858e20b08507777902829feb46a6e27d5237b51009832ff1f3a2', NULL, '3078.0000', '3078.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (55, '2018-10-23 15:34:00', 'SALE2018/10/0047', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '62820.3382', '112152.0000', '', '112152.0000', '0.0000', '11307.6618', 1, '0.0000', '11307.6618', '0.0000', '74128.0000', 'completed', 'due', 7, '2018-10-30', 1, 1, '2018-11-06 05:37:14', 166, 0, '14130.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '07c597591cc212353fae4ffdb6114e1e84c43609b12d966b9ef294c2b15bb2b5', NULL, '5653.8311', '5653.8311', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (56, '2018-10-23 15:45:00', 'SALE2018/10/0048', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '20000.0000', '35400.0000', '', '35400.0000', '0.0000', '3600.0000', 1, '0.0000', '3600.0000', '0.0000', '23600.0000', 'completed', 'pending', 7, '2018-10-30', 1, NULL, NULL, 50, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '38d9b42e97d979080ad36d1577fa7e3c65a1f60fe631073ebec8a1113caceaa7', NULL, '1800.0000', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (57, '2018-10-23 15:49:00', 'SALE2018/10/0049', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '16500.0000', '27390.0000', '', '27390.0000', '0.0000', '2970.0000', 1, '0.0000', '2970.0000', '0.0000', '19470.0000', 'completed', 'pending', 7, '2018-10-30', 1, NULL, NULL, 42, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ec2b18a2f208914322878b23c03f94728e78c13a8d21d0c9ee85d0f7fb90a293', NULL, '1485.0000', '1485.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (58, '2018-10-23 15:54:00', 'SALE2018/10/0050', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '13200.0000', '19074.0000', '', '19074.0000', '0.0000', '2376.0000', 1, '0.0000', '2376.0000', '0.0000', '15576.0000', 'completed', 'pending', 7, '2018-10-30', 1, NULL, NULL, 33, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b0b8057ee1723fc505c847ae9ccff3fdab81ee276e685aefeb6c4b973ee4e47c', NULL, '1188.0000', '1188.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (59, '2018-10-23 15:57:00', 'SALE2018/10/0051', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '10650.0000', '20913.0000', '', '20913.0000', '0.0000', '1917.0000', 1, '0.0000', '1917.0000', '0.0000', '12567.0000', 'completed', 'pending', 7, '2018-10-30', 1, NULL, NULL, 36, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '82a84d89ce00f9453dbe865b1cf79136c8a8e063ecf999abb379f4aefb2f21fd', NULL, '958.5000', '958.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (60, '2018-10-23 16:01:00', 'SALE2018/10/0052', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '24300.0000', '48126.0000', '', '48126.0000', '0.0000', '4374.0000', 1, '0.0000', '4374.0000', '0.0000', '28674.0000', 'completed', 'pending', 7, '2018-10-30', 1, NULL, NULL, 72, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b4efe76504e3e391b03faf464ead691a19fa4bc0fb37bec10bd99975e0b92dbb', NULL, '2187.0000', '2187.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (61, '2018-10-23 16:09:00', 'SALE2018/10/0053', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '30600.0000', '62492.0000', '', '62492.0000', '0.0000', '5508.0000', 1, '0.0000', '5508.0000', '0.0000', '36108.0000', 'completed', 'pending', 7, '2018-10-30', 1, NULL, NULL, 68, 0, '0.0000', 113, '0.0000', NULL, 'SR2019/01/0002', NULL, '-2655.0000', NULL, NULL, 0, 0, NULL, NULL, '83450c55f52703825441e8b5fc68dd8de23528e357ecb66b086e2b8878e81f79', NULL, '2754.0000', '2754.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (62, '2018-10-23 16:13:00', 'SALE2018/10/0054', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '6000.0000', '6120.0000', '', '6120.0000', '0.0000', '1080.0000', 1, '0.0000', '1080.0000', '0.0000', '7080.0000', 'completed', 'pending', 7, '2018-10-30', 1, NULL, NULL, 30, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4b56ae95152e9c9d7916ef2c5af986eb68f6e4015152862c5aae21c3c4675c5e', NULL, '540.0000', '540.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (63, '2018-10-23 16:21:00', 'SALE2018/10/0055', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '16200.0000', '21204.0000', '', '21204.0000', '0.0000', '2916.0000', 1, '0.0000', '2916.0000', '0.0000', '19116.0000', 'completed', 'pending', 7, '2018-10-30', 1, NULL, NULL, 72, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9e27fa7fadf19f86b484678689dc5e5b332bc76d4d4dfc09ca5a135cd0257479', NULL, '1458.0000', '1458.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (64, '2018-10-23 17:08:00', 'SALE2018/10/0056', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '59850.0000', '115197.0000', '', '115197.0000', '0.0000', '10773.0000', 1, '0.0000', '10773.0000', '0.0000', '70623.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 108, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7d552987f7efa1c4dc383747ee9aa5a3b408c859e8affabecfed37ce1a4fdf82', NULL, '5386.5000', '5386.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (65, '2018-10-24 06:11:00', 'SALE2018/10/0057', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '28800.0000', '34326.0000', '', '34326.0000', '0.0000', '5184.0000', 1, '0.0000', '5184.0000', '0.0000', '33984.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 24, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd24586f62aa7179eb780209ea82a341bba40b839c3c4b5dbf885bc8bc5e3a117', NULL, '2592.0000', '2592.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (66, '2018-10-23 09:31:00', 'SALE2018/10/0058', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '23700.0000', '31314.0000', '', '31314.0000', '0.0000', '4266.0000', 1, '0.0000', '4266.0000', '0.0000', '27966.0000', 'completed', 'paid', 0, NULL, 1, 1, '2018-11-05 07:59:26', 108, 0, '27966.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3d149235e13e2bb2829af4783252cf168ef9fb0667f226aa6b131e6c41b92ce3', NULL, '2133.0000', '2133.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (67, '2018-10-24 13:26:00', 'SALE2018/10/0059', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '35275.4235', '22125.0000', '', '22125.0000', '0.0000', '6349.5765', 1, '0.0000', '6349.5765', '0.0000', '41625.0000', 'completed', 'pending', 15, '2018-11-08', 1, NULL, NULL, 15, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0bb0d97bd1f9584fe74885b52a7edf35b8f5f861670678f6d3fe402001f791b7', NULL, '3174.7884', '3174.7884', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (68, '2018-10-24 13:56:00', 'SALE2018/10/0060', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '700.0000', '1674.0000', '', '1674.0000', '0.0000', '126.0000', 1, '0.0000', '126.0000', '0.0000', '826.0000', 'completed', 'pending', 15, '2018-11-08', 1, NULL, NULL, 2, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '826bcdff79c9142fdae12d7375264eb5703806efeb1f60fa6b2520b9dedc88c3', NULL, '63.0000', '63.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (69, '2018-10-24 13:59:00', 'SALE2018/10/0061', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '1800.0000', '3576.0000', '', '3576.0000', '0.0000', '324.0000', 1, '0.0000', '324.0000', '0.0000', '2124.0000', 'completed', 'pending', 15, '2018-11-08', 1, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '30dbdf4e94dc1f22f37985583e4d7b9a662d981904e20c6165738e1aeb053303', NULL, '162.0000', '162.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (70, '2018-10-24 14:05:00', 'SALE2018/10/0062', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '18625.0000', '28642.5000', '', '28642.5000', '0.0000', '3352.5000', 1, '0.0000', '3352.5000', '0.0000', '21977.5000', 'completed', 'pending', 15, '2018-11-08', 1, NULL, NULL, 71, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '56210831c2ea4bd6462d136e997437bcbd8a27f9e80c8510115f6c2cc795c5aa', NULL, '1676.2500', '1676.2500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (71, '2018-10-24 14:27:00', 'SALE2018/10/0063', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '30750.0000', '58415.0000', '', '58415.0000', '0.0000', '5535.0000', 1, '0.0000', '5535.0000', '0.0000', '36285.0000', 'completed', 'pending', 15, '2018-11-08', 1, NULL, NULL, 71, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3c8afa195002a9ebec30d8fff8f3984567fe1f1ece7c9f44f179674eb3e2cd90', NULL, '2767.5000', '2767.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (72, '2018-10-25 11:49:00', 'SALE2018/10/0064', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '30150.0000', '24723.0000', '', '24723.0000', '0.0000', '5427.0000', 1, '0.0000', '5427.0000', '0.0000', '35577.0000', 'completed', 'pending', 15, '2018-11-09', 1, NULL, NULL, 18, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'de8b95464a4791b5f0eb2d1489a1f6da40e316317ae1a130d81e123ba138f712', NULL, '2713.5000', '2713.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (73, '2018-10-25 12:46:00', 'SALE2018/10/0065', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '18150.0000', '39213.0000', '', '39213.0000', '0.0000', '3267.0000', 1, '0.0000', '3267.0000', '0.0000', '21417.0000', 'completed', 'pending', 15, '2018-11-09', 1, NULL, NULL, 69, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f71fd21d3d78f0aca2dc94903e2ebf0f53f060a0a396f4c06e925653cad7c51a', NULL, '1633.5000', '1633.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (74, '2018-10-25 12:49:00', 'SALE2018/10/0066', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '11475.0000', '25309.5000', '', '25309.5000', '0.0000', '2065.5000', 1, '0.0000', '2065.5000', '0.0000', '13540.5000', 'completed', 'pending', 15, '2018-11-09', 1, NULL, NULL, 47, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '57d1a364cf4e25e574d7cb482eaf1c668e050df5ee21a42a81e3d46c98b35104', NULL, '1032.7500', '1032.7500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (75, '2018-10-25 13:00:00', 'SALE2018/10/0067', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '64800.0000', '101736.0000', '', '101736.0000', '0.0000', '11664.0000', 1, '0.0000', '11664.0000', '0.0000', '76464.0000', 'completed', 'pending', 15, '2018-11-09', 1, NULL, NULL, 108, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'beda4f88e4e87461a7a53d51d9d9f394dd34dbf3e4f09baddfd544862ba14bbd', NULL, '5832.0000', '5832.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (76, '2018-10-25 14:42:00', 'SALE2018/10/0068', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '7350.0000', '15477.0000', '', '15477.0000', '0.0000', '1323.0000', 1, '0.0000', '1323.0000', '0.0000', '8673.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 21, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bef63244acc45725e5d543c0161dbf08316d84f4a10b8ffb7e59d3cba546805d', NULL, '661.5000', '661.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (77, '2018-10-26 14:01:00', 'SALE2018/10/0069', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '46527.0000', '28348.1400', '', '28348.1400', '0.0000', '8374.8600', 1, '0.0000', '8374.8600', '0.0000', '54901.8600', 'completed', 'pending', 15, '2018-11-10', 1, NULL, NULL, 21, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3020703ac79ece94da58686c0bd8f6d571f6c919a5c19f6c904c8309605c35a6', NULL, '4187.4300', '4187.4300', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (78, '2018-10-26 14:33:00', 'SALE2018/10/0070', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '21422.0000', '3222.0400', '', '3222.0400', '0.0000', '3855.9600', 1, '0.0000', '3855.9600', '0.0000', '25277.9600', 'completed', 'pending', 15, '2018-11-10', 1, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '19081244b8c9c1a7ca532cddc474d4171ace6d5580c68e75ac6a269819d7866f', NULL, '1927.9800', '1927.9800', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (79, '2018-10-26 14:47:00', 'SALE2018/10/0071', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '16800.0000', '21756.0000', '', '21756.0000', '0.0000', '3024.0000', 1, '0.0000', '3024.0000', '0.0000', '19824.0000', 'completed', 'pending', 15, '2018-11-10', 1, 1, '2018-10-26 15:22:35', 42, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'dfb37100d89556422f730b92e818d3444087698ddec8930d41a27d01da8c6258', NULL, '1512.0000', '1512.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (80, '2018-10-26 15:50:00', 'SALE2018/10/0072', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '7755.7626', '11548.2000', '', '11548.2000', '0.0000', '1396.0374', 1, '0.0000', '1396.0374', '0.0000', '9151.8000', 'completed', 'pending', 15, '2018-11-10', 1, 1, '2018-10-26 17:22:58', 42, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '395cdb9e18b46c7a5ed7dbb49ac7afd5dc3861949f7fcde96c635ad2ec05e6ed', NULL, '698.0187', '698.0187', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (81, '2018-10-26 17:37:00', 'SALE2018/10/0073', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '48060.0000', '53769.2000', '', '53769.2000', '0.0000', '8650.8000', 1, '0.0000', '8650.8000', '0.0000', '56710.8000', 'completed', 'pending', 15, '2018-11-11', 1, NULL, NULL, 116, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd89fdb6f5e636368296edb545870dc37a1cc4e8619803f8b6e13db8527cb04ec', NULL, '4325.4000', '4325.4000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (82, '2018-10-26 18:04:00', 'SALE2018/10/0074', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '56285.0000', '18633.7000', '', '18633.7000', '0.0000', '10131.3000', 1, '0.0000', '10131.3000', '0.0000', '66416.3000', 'completed', 'pending', 15, '2018-11-11', 1, NULL, NULL, 65, 0, '0.0000', 87, '0.0000', NULL, 'SR2018/10/0001', NULL, '-8195.1000', NULL, NULL, 0, 0, NULL, NULL, '2fae7ee2a49f72b00cd84712db61b562cacacfc853ef6f831e045c60c9765753', NULL, '5065.6500', '5065.6500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (83, '2018-10-26 20:26:00', 'SALE2018/10/0075', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '2025.0000', '4360.5000', '', '4360.5000', '0.0000', '364.5000', 1, '0.0000', '364.5000', '0.0000', '2389.5000', 'completed', 'pending', 15, '2018-11-11', 1, NULL, NULL, 9, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5b2cbc1a2c83c8ae31b7a5e82df0178bc09edd3153a860462b1474b2b70924f2', NULL, '182.2500', '182.2500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (84, '2018-10-26 21:24:00', 'SALE2018/10/0076', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '7870.0000', '13713.4000', '', '13713.4000', '0.0000', '1416.6000', 1, '0.0000', '1416.6000', '0.0000', '9286.6000', 'completed', 'pending', 15, '2018-11-11', 1, NULL, NULL, 20, 0, '0.0000', 92, '0.0000', NULL, 'SR2018/11/0001', NULL, '-8357.9400', NULL, NULL, 0, 0, NULL, NULL, '3f9b8a6ba64bf8eba2a6b3b4b15658a7731cb20eb4e76b955bc35b09175e09e1', NULL, '708.3000', '708.3000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (85, '2018-10-26 22:01:00', 'SALE2018/10/0077', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '2832.0000', '2658.2400', '', '2658.2400', '0.0000', '509.7600', 1, '0.0000', '509.7600', '0.0000', '3341.7600', 'completed', 'pending', 15, '2018-11-11', 1, NULL, NULL, 8, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0cd51dec027ec9443760cac0785958064d62da3f6c97b3055d5bd4a4164f5391', NULL, '254.8800', '254.8800', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (86, '2018-10-27 00:35:00', 'SALE2018/10/0078', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '23498.0000', '16006.8600', '', '16006.8600', '0.0000', '3125.1400', 1, '0.0000', '3125.1400', '0.0000', '26623.1400', 'completed', 'pending', 15, '2018-11-11', 1, NULL, NULL, 47, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7d1044d7c8aad9263f850bf145d975a66b654c4444121e58730a403ef0b3742f', NULL, '1562.5700', '1562.5700', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (87, '2018-10-30 03:24:00', 'SALE2018/10/0074', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', NULL, '-6945.0000', '-2054.9000', NULL, '-2054.9000', '0.0000', '-1250.1000', 1, '0.0000', '-1250.1000', '0.0000', '-8195.1000', 'returned', 'pending', NULL, NULL, 1, NULL, NULL, NULL, 0, '0.0000', NULL, '0.0000', NULL, 'SR2018/10/0001', 82, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, '-625.0500', '-625.0500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (88, '2018-10-30 06:46:00', 'SALE2018/10/0079', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '10640.0000', '15644.8000', '', '15644.8000', '0.0000', '1915.2000', 1, '0.0000', '1915.2000', '0.0000', '12555.2000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 56, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '905dc27c67a6e1a2a9d86c7ef8487eca86a7c23ef257e93dd17771e66267bfd0', NULL, '957.6000', '957.6000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (89, '2018-10-31 06:55:00', 'SALE2018/10/0080', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '5550.0000', '10341.0000', '', '10341.0000', '0.0000', '999.0000', 1, '0.0000', '999.0000', '0.0000', '6549.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 24, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '272906e43727b1e1da64ecb1987b9295ad23f5a284d1f407f96252ccb6682dbc', NULL, '499.5000', '499.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (92, '2018-11-02 08:54:00', 'SALE2018/10/0076', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', NULL, '-7083.0000', '-12342.0600', NULL, '-12342.0600', '0.0000', '-1274.9400', 1, '0.0000', '-1274.9400', '0.0000', '-8357.9400', 'returned', 'pending', NULL, NULL, 1, NULL, NULL, NULL, 0, '0.0000', NULL, '0.0000', NULL, 'SR2018/11/0001', 84, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, '-637.4700', '-637.4700', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (93, '2018-11-05 05:51:00', 'SALE2018/11/0082', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '60204.2377', '19109.0000', '', '19109.0000', '0.0000', '10836.7623', 1, '0.0000', '10836.7623', '0.0000', '71041.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 58, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '35243e66a509fac82be7d12b49f1aba7fc6abe376fa3504173b874d204ca10a0', NULL, '5418.3812', '5418.3812', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (95, '2018-11-05 07:35:00', 'SALE2018/11/0084', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '28240.6776', '28476.0000', '', '28476.0000', '0.0000', '5083.3224', 1, '0.0000', '5083.3224', '0.0000', '33324.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 36, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0c6858eb1226555c05dab5c5a70dd8fb222f62375e9e8e565176b3329989175a', NULL, '2541.6612', '2541.6612', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (97, '2018-11-07 06:33:00', 'SALE2018/11/0085', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '6300.0000', '9966.0000', '', '9966.0000', '0.0000', '1134.0000', 1, '0.0000', '1134.0000', '0.0000', '7434.0000', 'completed', 'pending', 15, '2018-11-22', 1, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3702ac36a6349cab29d1db2c9171df5a019c2ad68a41e7680c1ee4a11c08eb23', NULL, '567.0000', '567.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (98, '2018-11-21 04:23:00', 'SALE2018/11/0086', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '13703.3906', '19050.0000', '', '19050.0000', '0.0000', '2466.6094', 1, '0.0000', '2466.6094', '0.0000', '16170.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 43, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '619375def74eefb138c942f5787b0d8a515795e2b11ff5818cae005b90b07f22', NULL, '1233.3048', '1233.3048', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (100, '2018-11-23 11:20:00', 'SALE2018/11/0088', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '4600.0000', '0.0000', '', '0.0000', '0.0000', '828.0000', 1, '0.0000', '828.0000', '0.0000', '5428.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 240, 0, '5428.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '71c62c4dd792407e45538a623b3cd6e8c4af1b5748ca8883cd6128220bbf5890', NULL, '0.0000', '0.0000', '828.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (101, '2018-11-23 11:41:00', 'SALE2018/11/0089', 17, 'M/S. Majestic Leather Belt', 3, 'JI Corporation', 1, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '495.0000', 1, '0.0000', '495.0000', '0.0000', '3245.0000', 'completed', 'due', 0, NULL, 1, 1, '2018-11-23 11:48:55', 50, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e3ecc5a63bf058b5238fdc3a1078883e275b0b1045fa8fa9b4bd957c60bd89d1', NULL, '0.0000', '0.0000', '495.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (102, '2018-11-24 06:00:00', 'SALE2018/11/0090', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '30238.1343', '26715.0000', '', '26715.0000', '0.0000', '5442.8657', 1, '0.0000', '5442.8657', '0.0000', '35681.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 73, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '37800566e7b331952310bef43ce11f45ab4a40b3e96000df8e3ad0e36110b4bc', NULL, '2721.4330', '2721.4330', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (103, '2018-11-29 10:07:00', 'SALE2018/11/0091', 19, 'Signature Belt Shop', 3, 'JI Corporation', 1, '', '', '2555.0000', '0.0000', '', '0.0000', '0.0000', '459.9000', 1, '0.0000', '459.9000', '0.0000', '3014.9000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 135, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a58e66d4409845bd087fb931a144e31c9dc5f38bd990d0f9c1da034a72c5b547', NULL, '229.9500', '229.9500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (104, '2018-12-01 09:09:00', 'SALE2018/12/0092', 20, 'OM BELT HOUSE', 3, 'JI Corporation', 1, '', '', '21000.0000', '0.0000', '', '0.0000', '0.0000', '3780.0000', 1, '0.0000', '3780.0000', '0.0000', '24780.0000', 'completed', 'paid', 0, NULL, 1, 1, '2018-12-08 09:30:35', 900, 0, '24780.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6088d1543f1aefc951592046947b7db61896277205a3b17614983271303d38f1', NULL, '1890.0000', '1890.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (105, '2018-12-08 09:28:00', 'SALE2018/12/0093', 20, 'OM BELT HOUSE', 3, 'JI Corporation', 1, '', '', '8250.0000', '0.0000', '', '0.0000', '0.0000', '1485.0000', 1, '0.0000', '1485.0000', '0.0000', '9735.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 150, 0, '9735.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8667f08d0abd82b1a65ea8f82a11caad36615ab7eecdd9cbeaf69bcdf74225f7', NULL, '742.5000', '742.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (106, '2018-12-12 08:37:00', 'SALE2018/12/0094', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '2160.0000', '0.0000', '', '0.0000', '0.0000', '388.8000', 1, '0.0000', '388.8000', '0.0000', '2548.8000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 120, 0, '2548.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd328d0924f9f6bc88610b9c0f530931ce2fe9f9e147c22fd3555413a05994e66', NULL, '0.0000', '0.0000', '388.8000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (107, '2019-01-05 10:38:00', 'SALE2019/01/0095', 19, 'Signature Belt Shop', 3, 'JI Corporation', 1, '', '', '2980.0000', '0.0000', '', '0.0000', '0.0000', '536.4000', 1, '0.0000', '536.4000', '0.0000', '3516.4000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 160, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3b781ed607c30682831c15f489e0e2e27981283ee6d09329736bf6d24c1dd777', NULL, '268.2000', '268.2000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (108, '2019-01-05 10:58:00', 'SALE2019/01/0096', 22, 'KAIDEBHAI', 3, 'JI Corporation', 1, '', '', '1780.0000', '0.0000', '', '0.0000', '0.0000', '320.4000', 1, '0.0000', '320.4000', '0.0000', '2100.4000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 100, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e28fdc782bd5be894081712fe532dc22b76b22ac02dbfc750d1a11840c4e0f94', NULL, '0.0000', '0.0000', '320.4000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (109, '2019-01-05 11:08:00', 'SALE2019/01/0097', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '4010.0000', '0.0000', '', '0.0000', '0.0000', '721.8000', 1, '0.0000', '721.8000', '0.0000', '4731.8000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 215, 0, '4731.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8be3e1b7adc28e865366c1207656a50234ac1b719f982a0dac6c049b6a6c7cd2', NULL, '0.0000', '0.0000', '721.8000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (110, '2019-01-07 05:09:00', 'SALE2019/01/0098', 23, 'SHIVA ENTERPRISES', 3, 'JI Corporation', 1, '', '', '6840.0000', '0.0000', '', '0.0000', '0.0000', '1231.2000', 1, '0.0000', '1231.2000', '0.0000', '8071.2000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 380, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0d64144b262c01fefbe9c966454271066587fa783b6956d4c3270092d40313fe', NULL, '615.6000', '615.6000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (111, '2019-01-11 09:19:00', 'SALE2019/01/0099', 26, 'H.L.L Leather', 3, 'JI Corporation', 1, '', '', '3510.0000', '0.0000', '', '0.0000', '0.0000', '631.8000', 1, '0.0000', '631.8000', '0.0000', '4141.8000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 190, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3cdea1b8a600ef52b0186739f2b4d8dadaf22d79ef936192e9a4920eff8c0faa', NULL, '0.0000', '0.0000', '631.8000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (112, '2019-01-12 10:31:00', 'SALE2019/01/0100', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '27600.0000', '67920.0000', '', '67920.0000', '0.0000', '4968.0000', 1, '0.0000', '4968.0000', '0.0000', '32568.0000', 'completed', 'due', 0, NULL, 1, 1, '2019-01-16 04:14:02', 48, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '934d65167a659d916bb1a0187db91ffc054e5bfcfde60a8213613a7446dd5803', NULL, '2484.0000', '2484.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (113, '2019-01-13 04:08:00', 'SALE2018/10/0053', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', NULL, '-2250.0000', '-4595.0000', NULL, '-4595.0000', '0.0000', '-405.0000', 1, '0.0000', '-405.0000', '0.0000', '-2655.0000', 'returned', 'pending', NULL, NULL, 1, NULL, NULL, NULL, 0, '0.0000', NULL, '0.0000', NULL, 'SR2019/01/0002', 61, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, '-202.5000', '-202.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (114, '2019-01-31 03:23:00', 'SALE2019/01/0101', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '106803.0000', '0.0000', '', '0.0000', '0.0000', '19224.5400', 1, '0.0000', '19224.5400', '0.0000', '126027.5400', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 162, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bf397047b4eec1212fbf326125be7bf549b3bec2626dba5cae04e7bf294ed2d8', NULL, '9612.2700', '9612.2700', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (115, '2019-02-04 11:47:00', 'SALE2019/02/0102', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '3880.0000', '0.0000', '', '0.0000', '0.0000', '698.4000', 1, '0.0000', '698.4000', '0.0000', '4578.4000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 210, 0, '4578.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3e740ed0aee6f6451d374d26c93447e597379fc78679c5a3b30e113c1f0ca33d', NULL, '0.0000', '0.0000', '698.4000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (116, '2019-02-27 08:15:00', 'SALE2019/02/0103', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '324.0000', 1, '0.0000', '324.0000', '0.0000', '2124.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 100, 0, '2124.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '436d89586afb7ef5442f95f633735a836fa19c8d7e8a72ac5905684cb88ee8c3', NULL, '0.0000', '0.0000', '324.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (117, '2019-03-04 05:40:00', 'SALE2019/03/0104', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 3, 'JI Corporation', 1, '', '', '31420.0000', '0.0000', '', '0.0000', '0.0000', '5655.6000', 1, '0.0000', '5655.6000', '0.0000', '37075.6000', 'completed', 'due', 0, NULL, 2, 2, '2019-03-06 07:04:28', 77, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0a44f95be498014ec5df2aaa38e1d41d0dbabb246d33bcdaac4d3c57b53e86e0', NULL, '2827.8000', '2827.8000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (119, '2019-03-06 08:33:00', 'SALE2019/03/0106', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 3, 'JI Corporation', 1, '', '', '76575.0000', '0.0000', '', '0.0000', '0.0000', '13783.5000', 1, '0.0000', '13783.5000', '0.0000', '90358.5000', 'completed', 'pending', 0, NULL, 2, NULL, NULL, 202, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cc6772516cb1dd7e017e93839f0119a72a0c7946d03a0e4822a71ffb68e26705', NULL, '6891.7500', '6891.7500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (120, '2019-03-06 11:07:00', 'SALE2019/03/0107', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 3, 'JI Corporation', 1, '', '', '36900.0000', '0.0000', '', '0.0000', '0.0000', '6642.0000', 1, '0.0000', '6642.0000', '0.0000', '43542.0000', 'completed', 'pending', 0, NULL, 2, NULL, NULL, 102, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '66b45fadf20c75d512eb86c152e60d982300fca10c2b0e0da246c118c28c594b', NULL, '3321.0000', '3321.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (121, '2019-03-07 04:40:00', 'SALE2019/03/0108', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 3, 'JI Corporation', 1, '', '', '42009.1800', '0.0000', '', '0.0000', '0.0000', '7561.6524', 1, '0.0000', '7561.6524', '0.0000', '49570.8324', 'completed', 'pending', 0, NULL, 2, NULL, NULL, 54, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '45a7c984cdc4ae131e54451ac712869fa66773cfcc6c868f808bc0ea02889d23', NULL, '3780.8262', '3780.8262', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (122, '2019-03-07 04:55:00', 'SALE2019/03/0109', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 3, 'JI Corporation', 1, '', '', '27600.0000', '0.0000', '', '0.0000', '0.0000', '4968.0000', 1, '0.0000', '4968.0000', '0.0000', '32568.0000', 'completed', 'due', 0, NULL, 2, 2, '2019-03-11 05:34:21', 48, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'dade832fc022f42dc195799bc4e54c736c186c9cdea7cdc80d9541a451bed3dd', NULL, '2484.0000', '2484.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (123, '2019-03-20 10:18:00', 'SALE2019/03/0115', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '270.0000', 1, '0.0000', '270.0000', '0.0000', '1770.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 1, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '98205b43996519d67f4c220b6c0d92551d6d23b861b95512610fb342aff14e8b', NULL, '135.0000', '135.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (125, '2019-03-06 04:15:00', 'SALE2019/04/110', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 3, 'JI Corporation', 1, '', '', '57120.0000', '0.0000', '', '0.0000', '0.0000', '10281.6000', 1, '0.0000', '10281.6000', '0.0000', '67401.6000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 30, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'baf411af37222997dd69d77d33e18077bed453866eaa30cb751f4748c9d82aeb', NULL, '5140.8000', '5140.8000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (126, '2019-04-12 05:08:00', 'SALE2019/04/0117', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '32750.0000', '0.0000', '', '0.0000', '0.0000', '5895.0000', 1, '0.0000', '5895.0000', '0.0000', '38645.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 64, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '61b8f88d1dc6a3356c0e82c52fe16a9f5e44652bd2aa6effdf91026c4ad2233d', NULL, '2947.5000', '2947.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (127, '2019-04-12 05:39:00', 'SALE2019/04/0118', 27, 'PRAGATI ENTERPRISE(prime shoppers)', 3, 'JI Corporation', 1, '', '', '34800.0000', '0.0000', '', '0.0000', '0.0000', '6264.0000', 1, '0.0000', '6264.0000', '0.0000', '41064.0000', 'completed', 'due', 0, NULL, 1, 1, '2019-04-13 05:33:39', 67, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '13f369c9ba1c97f8f42c5dc4038ae0b14f9e1da5dc8f83318d13ee922c8ba53d', NULL, '3132.0000', '3132.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (128, '2019-05-04 07:21:00', 'SALE2019/05/0119', 29, 'PRAGATI ENTERPRISE(VIKRAM NAGAR)', 3, 'JI Corporation', 1, '', '', '30850.0000', '0.0000', '', '0.0000', '0.0000', '5553.0000', 1, '0.0000', '5553.0000', '0.0000', '36403.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 60, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1f59e9d83062d7afe63ee4d32b7ccb7ae76b68c0305d876adbc6db0b2269527a', NULL, '2776.5000', '2776.5000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (129, '2019-05-06 06:32:00', 'SALE2019/05/0120', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '486.0000', 1, '0.0000', '486.0000', '0.0000', '3186.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8b1ca1d6e9674d73fd91eda1cfff00abf0b48dc963c80e9b82e180c7893d1b59', NULL, '243.0000', '243.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (130, '2019-05-06 09:45:00', 'SALE2019/05/0121', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '81.0000', 1, '0.0000', '81.0000', '0.0000', '531.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 25, 0, '531.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9e878df57dfb72e69a1dca68ee6e19f11a512d8211b94be3b80dc4bf7b7c9abd', NULL, '0.0000', '0.0000', '81.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (131, '2019-05-08 05:33:00', 'SALE2019/05/0122', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '9600.0000', '0.0000', '', '0.0000', '0.0000', '1728.0000', 1, '0.0000', '1728.0000', '0.0000', '11328.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 480, 0, '11328.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '399f471674a10d33a8b83e66461719b2219c4cd904e054cdd8b8a1ee782fdc50', NULL, '0.0000', '0.0000', '1728.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (132, '2019-05-21 10:44:00', 'SALE2019/05/0123', 26, 'H.L.L Leather', 3, 'JI Corporation', 1, '', '', '720.0000', '0.0000', '', '0.0000', '0.0000', '129.6000', 1, '0.0000', '129.6000', '0.0000', '849.6000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 18, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6c30c86a890d4a5caf70d9d490d8ed83e19c8279e8d1acce967d51d6afe0793b', NULL, '0.0000', '0.0000', '129.6000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (133, '2019-05-30 06:27:00', 'SALE2019/05/0124', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '396.0000', 1, '0.0000', '396.0000', '0.0000', '2596.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 4, 0, '2596.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9111a847fd2ee43efbd4d61988519b7ea100b9cc420c309c6890f89c72d29c58', NULL, '198.0000', '198.0000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (134, '2019-06-03 10:08:00', 'SALE2019/06/0125', 30, 'M.M. Trade Impex', 3, 'JI Corporation', 1, '', '', '1140.0000', '0.0000', '', '0.0000', '0.0000', '205.2000', 1, '0.0000', '205.2000', '0.0000', '1345.2000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 60, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '22d2e555460d8783d59cc2878730f6101fc04cc1dd20de1d11254f80c8a98e50', NULL, '0.0000', '0.0000', '205.2000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (135, '2019-06-03 10:12:00', 'SALE2019/06/0126', 31, 'COSMIC BELT', 3, 'JI Corporation', 1, '', '', '980.0000', '0.0000', '', '0.0000', '0.0000', '176.4000', 1, '0.0000', '176.4000', '0.0000', '1156.4000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 50, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '10d55997f1d68dc84458b31548cbfa0e10b2d7de33da5617ba23029c0c8cafff', NULL, '0.0000', '0.0000', '176.4000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (136, '2019-06-10 09:25:00', 'SALE2019/06/0127', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '1390.0000', '0.0000', '', '0.0000', '0.0000', '250.2000', 1, '0.0000', '250.2000', '0.0000', '1640.2000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 80, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0538c464215eed77a9b4c057c8109d6e7b20b59063932eab64a566cdc52433ee', NULL, '0.0000', '0.0000', '250.2000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (137, '2019-06-22 10:38:00', 'SALE2019/06/0128', 32, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '414.0000', '0.0000', '', '0.0000', '0.0000', '74.5200', 1, '0.0000', '74.5200', '0.0000', '488.5200', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 23, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'af206879a9f681f2b9ffeebbaafd3355831025d3fe4f486021d3c03c77234841', NULL, '0.0000', '0.0000', '74.5200', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (138, '2019-06-22 10:44:00', 'SALE2019/06/0129', 33, 'PARMAR Leather craft', 3, 'JI Corporation', 1, '', '', '380.0000', '0.0000', '', '0.0000', '0.0000', '68.4000', 1, '0.0000', '68.4000', '0.0000', '448.4000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 20, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6f579d1629ded0bda951d92ac762f6234fa251cf366a22a2218671787dc6cb8b', NULL, '34.2000', '34.2000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (140, '2019-07-01 11:18:00', 'SALE2019/07/0131', 35, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '75495.1200', '0.0000', '', '0.0000', '0.0000', '13589.1216', 1, '0.0000', '13589.1216', '0.0000', '89084.2416', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 3624, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '668b1849a2f3021f510af9c8df0ad95dfaf532fe0adabb967e35a85f67b50398', NULL, '0.0000', '0.0000', '13589.1216', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (141, '2019-07-03 09:11:00', 'SALE2019/07/0132', 35, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '4230.0000', '0.0000', '', '0.0000', '0.0000', '761.4000', 1, '0.0000', '761.4000', '0.0000', '4991.4000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 94, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0556fffa9a068440dd0f63081315fa0c2cd2e5918fb2d460dd37abd0f30690b8', NULL, '0.0000', '0.0000', '761.4000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (142, '2019-07-23 10:38:00', 'SALE2019/07/0133', 35, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '900.0000', 1, '0.0000', '900.0000', '0.0000', '5900.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 250, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '201d9f577e78f0dc4e90ebff7cd10ddd4e05a6c8826103cd443e2065863dde96', NULL, '0.0000', '0.0000', '900.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (143, '2019-08-01 09:12:00', 'SALE2019/08/0134', 36, 'MMR IMPEX LLP', 3, 'JI Corporation', 1, '', '', '58050.0000', '0.0000', '', '0.0000', '0.0000', '10449.0000', 1, '0.0000', '10449.0000', '0.0000', '68499.0000', 'completed', 'due', 0, NULL, 1, 1, '2019-08-14 05:28:20', 1910, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8d8f92ef89c9adfa7f7e42c79b34a380e2daa543c1aecb7afb83f2c623ea370e', NULL, '0.0000', '0.0000', '10449.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (144, '2019-08-07 07:26:00', 'SALE2019/08/0135', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', '', '28035.0000', '0.0000', '', '0.0000', '0.0000', '5046.3000', 1, '0.0000', '5046.3000', '0.0000', '33081.3000', 'completed', 'due', 0, NULL, 1, 1, '2019-08-07 07:37:35', 68, 0, '0.0000', 147, '0.0000', NULL, 'SR2019/09/0002', NULL, '-31724.3000', NULL, NULL, 0, 0, NULL, NULL, 'e279b3b9e3f93987b7f9aa4642f03ea7143a8ba79b76a30cb33d3bd700313443', NULL, '2523.1500', '2523.1500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (145, '2019-08-17 05:28:00', 'SALE2019/08/0136', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '2005.0000', '0.0000', '', '0.0000', '0.0000', '360.9000', 1, '0.0000', '360.9000', '0.0000', '2365.9000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 105, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2ebdcbb2e285144267f44898ce0766ca99dee387a97a9ba1a94557ef65332c19', NULL, '0.0000', '0.0000', '360.9000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (146, '2019-08-31 10:49:00', 'SALE2019/08/0137', 38, 'Swarg Gold touch Limited', 3, 'JI Corporation', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '630.0000', 1, '0.0000', '630.0000', '0.0000', '4130.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 100, 0, '4130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '99f8c5acd5f30f5bbbdefe4b210e375542fbb637780486c7016facf2609e4d35', NULL, '0.0000', '0.0000', '630.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (147, '2019-09-04 05:22:00', 'SALE2019/08/0135', 8, 'PRAGATI ENTERPRISE', 3, 'JI Corporation', 1, '', NULL, '-26885.0000', '0.0000', NULL, '0.0000', '0.0000', '-4839.3000', 1, '0.0000', '-4839.3000', '0.0000', '-31724.3000', 'returned', 'pending', NULL, NULL, 1, NULL, NULL, NULL, 0, '0.0000', NULL, '0.0000', NULL, 'SR2019/09/0002', 144, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, '-2419.6500', '-2419.6500', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (148, '2019-09-14 09:47:00', 'SALE2019/09/0138', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '198.0000', 1, '0.0000', '198.0000', '0.0000', '1298.0000', 'completed', 'pending', 0, NULL, 2, NULL, NULL, 50, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c091f7f7ccfdd347a52fa9f7d30850d435eb935ad9bba81ff4e12db05286d746', NULL, '0.0000', '0.0000', '198.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (150, '2019-10-01 10:35:00', 'SALE2019/10/0140', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '1767.4560', '0.0000', '', '0.0000', '0.0000', '318.1440', 1, '0.0000', '318.1440', '0.0000', '2085.6000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 80, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f091b99e33e42cd038af7bcbe868fabd968256cf67e942f6a60e223bc4338ad1', NULL, '0.0000', '0.0000', '318.1440', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (151, '2019-10-10 10:10:00', 'SALE2019/10/0141', 30, 'M.M. Trade Impex', 3, 'JI Corporation', 1, '', '', '780.0000', '0.0000', '', '0.0000', '0.0000', '140.4000', 1, '0.0000', '140.4000', '0.0000', '920.4000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 39, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7b4947f217231dc6b6a951a197c875752d7b92d43d9732c9a1bd06a668377306', NULL, '0.0000', '0.0000', '140.4000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (152, '2019-10-11 09:08:00', 'SALE2019/10/0142', 40, 'SABIRBHAI', 3, 'JI Corporation', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '270.0000', 1, '0.0000', '270.0000', '0.0000', '1770.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 50, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ce0abc172ca04c5f817d5596ddaa49bb0131c34109bb561e17d168fcdffd9ea1', NULL, '0.0000', '0.0000', '270.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (153, '2019-10-16 11:28:00', 'SALE2019/10/0143', 30, 'M.M. Trade Impex', 3, 'JI Corporation', 1, '', '', '54500.0000', '0.0000', '', '0.0000', '0.0000', '9810.0000', 1, '0.0000', '9810.0000', '0.0000', '64310.0000', 'completed', 'due', 0, NULL, 1, 1, '2019-10-16 11:50:58', 2150, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '63c12876f5556928251f3ddfcdfa38adbe46b7dcd6400a563a316de5ae52634f', NULL, '0.0000', '0.0000', '9810.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (154, '2019-09-24 09:42:00', 'SALE2019/09/0139', 39, 'TAJIR', 3, 'JI Corporation', 1, '', '', '47540.0000', '0.0000', '', '0.0000', '0.0000', '8557.2000', 1, '0.0000', '8557.2000', '0.0000', '56097.2000', 'completed', 'due', 0, NULL, 1, NULL, NULL, 206, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '02ba44330a30477ea16522640540fa4b2e2ca92e59a91a324859ff54e7ea152f', NULL, '4278.6000', '4278.6000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (155, '2019-10-21 06:41:00', 'SALE2019/10/0144', 39, 'TAJIR', 3, 'JI Corporation', 1, '', '', '5620.0000', '0.0000', '', '0.0000', '0.0000', '1011.6000', 1, '0.0000', '1011.6000', '0.0000', '6631.6000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 19, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5059341dcf1c3c35ba952200e048871d6e0f977b352cdaa0715f3ef7952ebaa7', NULL, '505.8000', '505.8000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (156, '2019-10-21 09:24:00', 'SALE2019/10/0145', 35, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '41292.5200', '0.0000', '', '0.0000', '0.0000', '7432.6536', 1, '0.0000', '7432.6536', '0.0000', '48725.1736', 'completed', 'due', 0, NULL, 1, 1, '2019-10-22 03:29:32', 53, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ecb3a32b4ed341fc5a3fa81afc250c5c4f43ad70562f951fc1ace7f343db51b7', NULL, '0.0000', '0.0000', '7432.6536', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (157, '2019-11-03 08:32:00', 'SALE2019/11/0146', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '17000.0000', '0.0000', '', '0.0000', '0.0000', '3060.0000', 1, '0.0000', '3060.0000', '0.0000', '20060.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 890, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '686d18d4506391f52c5e11adcd917a95907d59169992b8466cb48db76ecdf904', NULL, '0.0000', '0.0000', '3060.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (158, '2019-11-15 08:08:00', 'SALE2019/11/0147', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '2550.0000', '0.0000', '', '0.0000', '0.0000', '459.0000', 1, '0.0000', '459.0000', '0.0000', '3009.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 115, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1088fecc06c8cbcaddbe0e9965c927f011ba1278d831a89e1e40f68339c97083', NULL, '0.0000', '0.0000', '459.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (159, '2019-11-20 06:53:00', 'SALE2019/11/0148', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '7750.0000', '0.0000', '', '0.0000', '0.0000', '1395.0000', 1, '0.0000', '1395.0000', '0.0000', '9145.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 330, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b5a765b1aea2c5d4539fa438ba94f3d5bdf284ed42d560697d50b00d6810d692', NULL, '0.0000', '0.0000', '1395.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (160, '2019-12-10 11:27:00', 'SALE2019/12/0149', 35, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '62320.0000', '0.0000', '', '0.0000', '0.0000', '11217.6000', 1, '0.0000', '11217.6000', '0.0000', '73537.6000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 2616, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a2ce0f8539dd576d97140c3f95f1d2f5ea68cbf0658113d721993aea9bbfbe32', NULL, '0.0000', '0.0000', '11217.6000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (161, '2019-12-13 04:28:00', 'SALE2019/12/0150', 39, 'TAJIR', 3, 'JI Corporation', 1, '', '', '63140.0000', '0.0000', '', '0.0000', '0.0000', '11365.2000', 1, '0.0000', '11365.2000', '0.0000', '74505.2000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 656, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1ec469e1730e92472e6c69e4379de72d4510afd6c3c27410764de52140b3838a', NULL, '5682.6000', '5682.6000', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (162, '2020-01-22 04:30:00', 'SALE2020/01/0151', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '12940.6820', '0.0000', '', '0.0000', '0.0000', '2329.3180', 1, '0.0000', '2329.3180', '0.0000', '15270.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 285, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd79d4242e915a0d65afbbe6254673952d7626a4ff6b04f788feea0f645bc1bee', NULL, '0.0000', '0.0000', '2329.3180', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (163, '2020-02-12 04:57:00', 'SALE2020/02/0152', 44, 'ROSHNI NOVELTY', 3, 'JI Corporation', 1, '', '', '8400.0000', '0.0000', '', '0.0000', '0.0000', '1512.0000', 1, '0.0000', '1512.0000', '0.0000', '9912.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 280, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '50acbb6f7b29f9f606d9f955d38433b511b100180ee03521a54b2cef7859b1f4', NULL, '0.0000', '0.0000', '1512.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (164, '2020-02-12 05:02:00', 'SALE2020/02/0153', 44, 'ROSHNI NOVELTY', 3, 'JI Corporation', 1, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '1440.0000', 1, '0.0000', '1440.0000', '0.0000', '9440.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 160, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2eeec4f8adf8bc806be580048acd5110f37f484f32b5122b80fffbf02deead88', NULL, '0.0000', '0.0000', '1440.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (165, '2020-02-12 05:03:00', 'SALE2020/02/0154', 44, 'ROSHNI NOVELTY', 3, 'JI Corporation', 1, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '1440.0000', 1, '0.0000', '1440.0000', '0.0000', '9440.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 400, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '29c94e8399cc9dc30224be84cfc9c6e648bd25a0b93e4d377c95deb7ecda4e0f', NULL, '0.0000', '0.0000', '1440.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (166, '2020-02-26 03:15:00', 'SALE2020/02/0155', 16, 'Monarch Belts &Bags', 3, 'JI Corporation', 1, '', '', '21900.0000', '0.0000', '', '0.0000', '0.0000', '3942.0000', 1, '0.0000', '3942.0000', '0.0000', '25842.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 480, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7f05f5aa175763d2fec103b152c91e708853e2cfbc03bc7db8fd1ed9f4a66f0e', NULL, '0.0000', '0.0000', '3942.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (167, '2020-02-27 04:45:00', 'SALE2020/02/0156', 44, 'ROSHNI NOVELTY', 3, 'JI Corporation', 1, '', '', '8446.7760', '0.0000', '', '0.0000', '0.0000', '1520.4240', 1, '0.0000', '1520.4240', '0.0000', '9967.2000', 'completed', 'due', 0, NULL, 1, 1, '2020-02-27 04:51:04', 283, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '90a71b8d553b15c8c0bebea5ec0025830d16e268d4a56f1c19315c4d9c75436c', NULL, '0.0000', '0.0000', '1520.4240', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (168, '2020-03-06 03:56:00', 'SALE2020/03/0157', 44, 'ROSHNI NOVELTY', 3, 'JI Corporation', 1, '', '', '8466.0960', '0.0000', '', '0.0000', '0.0000', '1523.9040', 1, '0.0000', '1523.9040', '0.0000', '9990.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 265, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '38c8252ae35a06f8cf9432baf0f5a0f06dc9295a6682a817d504cec4484ca2ec', NULL, '0.0000', '0.0000', '1523.9040', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (169, '2020-12-29 14:45:23', 'SALE/POS2020/12/0021', 1, 'Walk-in Customer', 3, 'JI Corporation', 1, '', '', '251.0169', '0.0000', '', '0.0000', '0.0000', '45.1831', 1, '0.0000', '45.1831', '0.0000', '296.2000', 'completed', 'due', 0, NULL, 1, NULL, NULL, 4, 1, '297.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0c9fdb1a4dfb3bd6460d676e7de362d312d9b983916fe96750862ca36eebcb8', NULL, '22.5916', '22.5916', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (170, '2020-12-29 15:08:00', '5454', 45, 'vikas', 3, 'JI Corporation', 1, '', '', '6084.7457', '0.0000', '', '0.0000', '0.0000', '1095.2543', 1, '0.0000', '1095.2543', '0.0000', '7180.0000', 'completed', 'pending', 0, NULL, 1, NULL, NULL, 3, 0, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd49b0d60f38015d72032f4715972d21d2bf3813632f77a27ee6a1449d91931d9', NULL, '547.6272', '547.6272', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (171, '2021-01-13 10:52:43', 'SALE/POS2021/01/0022', 32, 'Leather Smith House Of Fashion P Ltd', 3, 'JI Corporation', 1, '', '', '75.0000', '0.0000', '', '0.0000', '0.0000', '13.5000', 1, '0.0000', '13.5000', '0.0000', '88.5000', 'completed', 'due', 0, NULL, 1, NULL, NULL, 5, 1, '89.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b384c51affb73d6477423ddc759107f1d5a3f467a56d7d24212f39b2dc97215', NULL, '0.0000', '0.0000', '13.5000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (172, '2021-01-13 10:52:50', 'SALE/POS2021/01/0023', 1, 'Walk-in Customer', 3, 'JI Corporation', 1, '', '', '1559.3220', '0.0000', '', '0.0000', '0.0000', '280.6780', 1, '0.0000', '280.6780', '0.0000', '1840.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '1840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '274d73521d962875bdb460bb99f80a2168f5003d098914668bbc9ff1122d0b46', NULL, '140.3390', '140.3390', '0.0000', NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (173, '2021-01-19 12:41:32', 'SALE/POS2021/01/0024', 1, 'Walk-in Customer', 3, 'JI Corporation', 1, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '4.5000', 1, '0.0000', '4.5000', '0.0000', '29.5000', 'completed', 'due', 0, NULL, 1, NULL, NULL, 2, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c877683583a48ec229b29053bc6cc7023c5a086e38514280654fb775efbe7fff', NULL, '2.2500', '2.2500', '0.0000', NULL);


#
# TABLE STRUCTURE FOR: sma_sessions
#

DROP TABLE IF EXISTS `sma_sessions`;

CREATE TABLE `sma_sessions` (
  `id` varchar(40) NOT NULL,
  `ip_address` varchar(45) NOT NULL,
  `timestamp` int(10) unsigned NOT NULL DEFAULT '0',
  `data` blob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ci_sessions_timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ba45cfdf098bd16c7ee838bdb7a417a3313500', '52.8.185.89', 1609389810, '__ci_last_regenerate|i:1609389810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0121db64ed91a507e04ff7e04b06e1337602b49f', '43.251.72.35', 1609233039, '__ci_last_regenerate|i:1609233039;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ab3309dedfa3edfd780c6f8481b7595f18f064', '43.255.154.124', 1609235027, '__ci_last_regenerate|i:1609235027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03fcd0e3d26bae02c228e681d2f228d0a24e6a95', '27.62.143.231', 1610515370, '__ci_last_regenerate|i:1610515370;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610431709\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610515243;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e0b189a4b23b8614d1a22b4f44c80fe0519948', '27.62.43.15', 1610951285, '__ci_last_regenerate|i:1610951285;identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610515169\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610944424;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05bc161d61f564c222cb2426020c5146428d6638', '123.201.1.180', 1610692333, '__ci_last_regenerate|i:1610692274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e868863cb79ed2ac12a4b33ebb3ec7f0becaf6', '27.7.64.49', 1611312646, '__ci_last_regenerate|i:1611312645;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfd76d4d8b724953697af91ec3ae9f9355b9c8a', '43.251.72.35', 1610515824, '__ci_last_regenerate|i:1610515824;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610513949\";last_ip|s:13:\"27.62.143.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610515441;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";user_csrf|s:20:\"Q0s3lXbLCMhyUzEd1en5\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13828183339148974bd34ae760134bae1357d1e3', '103.81.209.219', 1611039954, '__ci_last_regenerate|i:1611039852;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611038492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156674257339c4f64ff468711f1c55f0b88a6467', '27.62.43.15', 1610944098, '__ci_last_regenerate|i:1610944098;identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610515169\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610943987;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a670e58c060caa98123dd608e8120846b0bc2e', '52.114.14.102', 1611310914, '__ci_last_regenerate|i:1611310914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16c4f76d1918286b10f2592af744605f6eda7e7a', '106.203.69.235', 1611132353, '__ci_last_regenerate|i:1611132353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1768cca51833d610838e337a53d33b9bf5b89a9f', '43.251.72.35', 1609236332, '__ci_last_regenerate|i:1609236332;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233818;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17da77214958203e9d0e7183e2b467b85bf25336', '27.62.143.231', 1610517458, '__ci_last_regenerate|i:1610517458;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610431709\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610517402;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1803a63db31a621f230c4718f6525a7ab52d8dc3', '43.251.72.35', 1609235996, '__ci_last_regenerate|i:1609235996;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233818;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aae7f9047714bbfc2cf46310930a98c99733bc3', '52.114.6.38', 1611031798, '__ci_last_regenerate|i:1611031798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba6aee1e17fab0a4c4b07b2d3c3227b89bfc964', '43.251.72.35', 1611033588, '__ci_last_regenerate|i:1611033588;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610997510\";last_ip|s:13:\"157.49.246.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de082ebaac8035aa48007769d1dfd91ee077460', '43.251.72.35', 1609234328, '__ci_last_regenerate|i:1609234328;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233818;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eee816b3b2ed39b8bf5268fd4023d83d4cb8f66', '52.8.185.89', 1609389810, '__ci_last_regenerate|i:1609389810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21812f7115d80c896663a1dbf9ba12d0ed291b4a', '157.49.246.38', 1610997761, '__ci_last_regenerate|i:1610997597;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610943782\";last_ip|s:11:\"27.62.43.15\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";error|N;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c794ab4ae3bd58c34e0f5677c7d7795329356a', '43.251.72.35', 1610515149, '__ci_last_regenerate|i:1610515149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25088b2588176beec3d080ec0f03c2733f5fa68c', '27.62.43.15', 1610953867, '__ci_last_regenerate|i:1610953867;identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610515169\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610953867;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2707814b3c3a3d9d512d6f6b5363ecfc447a11a5', '27.62.121.230', 1611290199, '__ci_last_regenerate|i:1611290199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('278efa9bbd7c1b874a9c21f29dbd509dcaf68d59', '103.81.209.219', 1611034275, '__ci_last_regenerate|i:1611034275;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b914495cdff8cc837c54cad252e6e1ad7744f5e', '43.251.72.35', 1611040817, '__ci_last_regenerate|i:1611040817;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611032328\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611040495;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343a36b1ad7618eaaff536242fd33a8cc48972d5', '43.251.72.35', 1610515824, '__ci_last_regenerate|i:1610515824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d92db5d99b927a9cac3c4ecece4ad0fa120da7', '103.81.209.219', 1611038226, '__ci_last_regenerate|i:1611038226;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611035449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373024ca18ea12c3c58048d900b6983450409244', '103.81.209.219', 1611033948, '__ci_last_regenerate|i:1611033948;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c37a380c5485d6ff4869291f4e2e42afe2ea351', '103.81.209.219', 1611037660, '__ci_last_regenerate|i:1611037660;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031410\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611035477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401aec28d8217f1ef12ff72d20f599a8fc537b8a', '103.81.209.219', 1611035118, '__ci_last_regenerate|i:1611035118;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419365c3e68969222a6c13db52e4fb33fc1efb65', '157.46.120.243', 1611056286, '__ci_last_regenerate|i:1611056286;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611040215\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";error|N;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42079d8fd5e5c959e1a8a527e9981edbd9d9d906', '43.251.72.35', 1611031882, '__ci_last_regenerate|i:1611031882;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610997510\";last_ip|s:13:\"157.49.246.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43af28ea954789fbbd8b003cd80851fed91b65c2', '27.62.121.230', 1611292486, '__ci_last_regenerate|i:1611292486;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47901464701b65a767172d8bdf9c5ac93dd60c5e', '43.251.72.35', 1609236906, '__ci_last_regenerate|i:1609236906;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233818;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba66ab191af8c302baed44d38f651e0ec5f0f0d', '104.35.128.45', 1611386294, '__ci_last_regenerate|i:1611386156;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611239919\";last_ip|s:13:\"27.62.121.230\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611386244;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1a5f7771d73226a4258c435dca73c5a91a0812', '27.62.143.231', 1610515042, '__ci_last_regenerate|i:1610515042;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610431709\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610514018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523008536b63d0202a44b1299a01803146b7f66d', '43.251.72.35', 1610515485, '__ci_last_regenerate|i:1610515485;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610513949\";last_ip|s:13:\"27.62.143.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610515441;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53fa1169e9632ef4bfc43af92fc07f3d44d064ae', '52.114.14.102', 1610431657, '__ci_last_regenerate|i:1610431657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b94e8fe65044a8a7644dc094339b73bad609b5', '223.184.156.254', 1611134007, '__ci_last_regenerate|i:1611134007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56bfbef0aa8e727f264afb0e5ae2c64d0bc4b9f1', '43.251.72.35', 1610431748, '__ci_last_regenerate|i:1610431748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59d62fd1c44373b58ef1f0dcf2689185f2cebc25', '27.62.143.231', 1610514487, '__ci_last_regenerate|i:1610514487;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610431709\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610514018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a1df45b70ef32a4280e2e85a35c82f480f3e3c2', '103.81.209.219', 1611035449, '__ci_last_regenerate|i:1611035449;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc50e6a89c05f3f875a18be69a14cf7dfe53bcc', '43.251.72.35', 1611040201, '__ci_last_regenerate|i:1611040201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dec6c1e8c9db141324c8558812ec2ea88ae5383', '27.62.121.230', 1611241053, '__ci_last_regenerate|i:1611241053;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611055348\";last_ip|s:14:\"157.46.120.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611240347;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dk4t8mo9trb6pusido1hvpmv21gto7q', '42.236.10.125', 1607583468, '__ci_last_regenerate|i:1607583466;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643ee773c899c3b5b6f48248326181258171cbf2', '43.251.72.35', 1611033175, '__ci_last_regenerate|i:1611033175;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610997510\";last_ip|s:13:\"157.49.246.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b2dcc200aae006e91c3e236db17ad3108ba90d', '103.81.209.242', 1610431753, '__ci_last_regenerate|i:1610431662;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1609236985\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610431735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f5229c420497f73e195e6454735ac3b9e7c373a', '103.81.209.219', 1611035060, '__ci_last_regenerate|i:1611035060;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031410\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756aabe4693005239ea62063686459a3d133cf85', '43.251.72.35', 1609234713, '__ci_last_regenerate|i:1609234713;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233818;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78193bf5bd9fc44f4f6ec5c4b93f0bc6918437f2', '103.81.209.219', 1611037660, '__ci_last_regenerate|i:1611037660;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031410\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611035477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c5bd1a420fbd854368be722dd719d288baaeb7', '43.251.72.35', 1611037504, '__ci_last_regenerate|i:1611037504;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610997510\";last_ip|s:13:\"157.49.246.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4ba0659c8fff2efebc5a90896590ce5aa4bea1', '157.51.176.233', 1611292487, '__ci_last_regenerate|i:1611292486;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ed192ee72d730758160e0fdd6c58d027f9fd1b3', '27.61.200.15', 1610511350, '__ci_last_regenerate|i:1610511350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827b4225d631394627860450dc7331d33b1934c9', '103.81.209.219', 1611038904, '__ci_last_regenerate|i:1611038904;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611038492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8289c6dd11f480b4e93294d927b543c71980dc1d', '43.251.72.35', 1610515150, '__ci_last_regenerate|i:1610515150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82953bab39ead6f9836b03e7a3cf389080c1aff7', '27.61.200.15', 1610511350, '__ci_last_regenerate|i:1610511350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a31cfcb7640587232049a04fd61adefe3f8cad', '43.251.72.35', 1609232602, '__ci_last_regenerate|i:1609232602;requested_page|s:5:\"admin\";error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c7fc9d0a02592f2a6b706c4971fb7ad4e09b0e', '27.62.121.230', 1611240213, '__ci_last_regenerate|i:1611240213;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611055348\";last_ip|s:14:\"157.46.120.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611240084;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('843bba58d5cdcc779c3c69cc948c3761475e0d32', '103.81.209.219', 1611037700, '__ci_last_regenerate|i:1611037700;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611035449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868a9956cb8b310eae32ed78347fa8b4ccbd739d', '27.61.200.15', 1610511349, '__ci_last_regenerate|i:1610511349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2b13377616975162ddc3952a70676e9a1163bd', '52.114.14.102', 1610431657, '__ci_last_regenerate|i:1610431657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca38c11f66818b940dff261b3054cead31fb3a5', '157.49.246.38', 1610997597, '__ci_last_regenerate|i:1610997597;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610943782\";last_ip|s:11:\"27.62.43.15\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2a86cf3b9cbfaae07cafc0b00218f0236f572c', '103.81.209.219', 1611035476, '__ci_last_regenerate|i:1611035476;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031410\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a0f64652506df8cd725ab0177727c5f706e357', '27.62.43.15', 1610951635, '__ci_last_regenerate|i:1610951635;identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610515169\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610951469;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942fbc9a34d30c0d37b218cfba56221b6631b6ab', '223.184.156.254', 1611134007, '__ci_last_regenerate|i:1611134007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95095a3dc40ae0052becc0a8138945d8f57622c7', '52.114.6.38', 1611031798, '__ci_last_regenerate|i:1611031798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95c3aac615ce5c2fc3669853b6af6aea7cf6a260', '27.62.50.162', 1611132353, '__ci_last_regenerate|i:1611132353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e60be9bb8acd36123b87070eb4400367151086', '27.62.121.230', 1611241053, '__ci_last_regenerate|i:1611241053;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611055348\";last_ip|s:14:\"157.46.120.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611241053;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc9d137a4510865ab8512b97866993c3156bc11', '43.251.72.35', 1609233751, '__ci_last_regenerate|i:1609233751;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233442;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f99aadb2e48958b78a462edc1c6efc9a07cc7bf', '27.61.185.237', 1609236956, '__ci_last_regenerate|i:1609236956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c03d872afc0550eb8bab88409a145caf9c029d', '43.251.72.35', 1609389824, '__ci_last_regenerate|i:1609389823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23fa943a7cd84e90a1033dfcb24ddbbdd150c52', '43.251.72.35', 1611034024, '__ci_last_regenerate|i:1611034024;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610997510\";last_ip|s:13:\"157.49.246.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54bcfed7ab8a5efea1e8cda01f64711b53775f2', '27.62.143.231', 1610521762, '__ci_last_regenerate|i:1610521664;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610431709\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610517605;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ua53onfvbdcalk4eg8edg23c4oulso', '42.236.10.75', 1607583459, '__ci_last_regenerate|i:1607583459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a749bc754fdcc857829cf22b4d04265d47918d3d', '157.49.201.150', 1611142130, '__ci_last_regenerate|i:1611142130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f7cf8d800c11ee24a6a86d76b6d8be804bc31e', '157.46.120.243', 1611055577, '__ci_last_regenerate|i:1611055577;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611040215\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";message|s:38:\"<p>You are successfully logged in.</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab183f5ebfedee86135d92ca5c3e2e12b0684aea', '27.7.64.49', 1611306781, '__ci_last_regenerate|i:1611306781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc2b0b7b5fc8d1a3c5b696160600f3141ee5ac4', '43.251.72.35', 1609233442, '__ci_last_regenerate|i:1609233442;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233323;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0cb18eb93e66529d452a7aed3e21fef36bd7b62', '27.62.143.231', 1610521664, '__ci_last_regenerate|i:1610521664;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610431709\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610517605;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3014611b5d8a31a9541fbddf1fa7cbd02c12792', '49.44.78.202', 1611055259, '__ci_last_regenerate|i:1611055259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4092faab9ce9120bc889e04f4e172b424cc380a', '27.7.64.49', 1611306781, '__ci_last_regenerate|i:1611306781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4da74a876ebecf57d8c902dcf49044b6041684f', '43.251.72.35', 1611040827, '__ci_last_regenerate|i:1611040827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61ea5fc8cff8ccb28a9cd196483c9435c511f92', '27.61.185.237', 1609236956, '__ci_last_regenerate|i:1609236956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77ddd02f77b41b6220f9b3fa8ba015b86d2806d', '43.251.72.35', 1609236995, '__ci_last_regenerate|i:1609236995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e62d0a914a7cdebadfb80498cdecf9eb842c44', '27.62.43.15', 1610944423, '__ci_last_regenerate|i:1610944423;identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610515169\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610944306;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91b97af23f98345f846d593175a3efaebec790b', '27.62.104.4', 1611047743, '__ci_last_regenerate|i:1611047741;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba948d221dc2366be981b6508b7c9a5a42f542ee', '43.251.72.35', 1611039586, '__ci_last_regenerate|i:1611039586;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610997510\";last_ip|s:13:\"157.49.246.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2f5101f974091f05c7dc1e19a10fa41e6b070f', '27.61.185.237', 1609236957, '__ci_last_regenerate|i:1609236957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('biuacik685co7d8gq46f6e8aumtj2sbt', '42.236.10.84', 1607583548, '__ci_last_regenerate|i:1607583538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a308e47af63f107b4e6419525b2aeac9dce4b5', '157.49.246.128', 1611056553, '__ci_last_regenerate|i:1611056553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4nl9jicvphccdhd9n0666atkfp1tagr', '59.52.177.42', 1607634890, '__ci_last_regenerate|i:1607634888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca6f053548d7a28a0710e8560b239b5cb1125a79', '52.114.14.102', 1611310913, '__ci_last_regenerate|i:1611310913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca91640e6f0b421f16de7b1673fdc73bf7125b78', '52.114.6.38', 1611031798, '__ci_last_regenerate|i:1611031798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb86ef738d394ccafc2f4a7f1d71b6939db8e3cd', '43.251.72.35', 1609235027, '__ci_last_regenerate|i:1609235027;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233818;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4fa9306995e49598a69c210deb06386f49f5b14', '103.81.209.219', 1611038582, '__ci_last_regenerate|i:1611038582;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611038492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d885a1adf3fcec2d8dbfd24a2cd740687f2fa267', '43.251.72.35', 1611040504, '__ci_last_regenerate|i:1611040504;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611032328\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611040495;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc22a2eacddcda4b46344e45fa266cedb6b45e80', '52.8.185.89', 1609389809, '__ci_last_regenerate|i:1609389809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4391e2d977499382f37fb106abef8042b74888', '103.81.209.219', 1611039852, '__ci_last_regenerate|i:1611039852;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1611038492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12f468ee052ac14c4737171ed93bd3fd2e915ef', '43.251.72.35', 1609235439, '__ci_last_regenerate|i:1609235439;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1598526747\";last_ip|s:14:\"117.248.123.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1609233818;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e68ea829de274430a5b36f4498c6b4e1be7b5f0d', '103.81.209.219', 1611032979, '__ci_last_regenerate|i:1611032979;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031828\";last_ip|s:14:\"103.81.209.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2e72a66d6bd8258b4a3120591873d8e32e542e', '27.7.64.49', 1611312645, '__ci_last_regenerate|i:1611312645;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecce2dc6955063485f5bbc071e6c35bfc589cf14', '122.174.13.66', 1610813179, '__ci_last_regenerate|i:1610813179;requested_page|s:18:\"admin/products/add\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4c2f006d7f2bae7c0317243881c827a09d2786', '52.114.14.102', 1610431657, '__ci_last_regenerate|i:1610431657;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f75da8c777387c684f1b34a91abbdd57c848da10', '27.62.143.231', 1610515686, '__ci_last_regenerate|i:1610515686;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610431709\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610515420;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b90f2e799d397ffe18f1e6bcf9465719c68ea3', '103.81.209.219', 1611032195, '__ci_last_regenerate|i:1611032195;requested_page|s:5:\"admin\";identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1611031410\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bb7828e749ff25ae794213555ad528a87a8584', '27.62.43.15', 1610953867, '__ci_last_regenerate|i:1610953867;identity|s:24:\"vikykothiya420@gmail.com\";username|s:5:\"owner\";email|s:24:\"vikykothiya420@gmail.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1610515169\";last_ip|s:12:\"43.251.72.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1610951776;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2019-05-02 04:49:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa6997515b27761bb5ded672301381257b7746b', '52.114.14.102', 1611310914, '__ci_last_regenerate|i:1611310914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff0094614ac6cdde1aa128eab79ed7be21c221fe', '223.184.156.254', 1611134007, '__ci_last_regenerate|i:1611134007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('qdfqukphq6hgr2itjmnqtt2p0vh32fia', '117.40.114.94', 1607582945, '__ci_last_regenerate|i:1607582943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('sjp1ipob0g43buototge6bt6hdlaralt', '138.246.253.24', 1607649504, '__ci_last_regenerate|i:1607649504;');


#
# TABLE STRUCTURE FOR: sma_settings
#

DROP TABLE IF EXISTS `sma_settings`;

CREATE TABLE `sma_settings` (
  `setting_id` int(1) NOT NULL,
  `logo` varchar(255) NOT NULL,
  `logo2` varchar(255) NOT NULL,
  `site_name` varchar(55) NOT NULL,
  `language` varchar(20) NOT NULL,
  `default_warehouse` int(2) NOT NULL,
  `accounting_method` tinyint(4) NOT NULL DEFAULT '0',
  `default_currency` varchar(3) NOT NULL,
  `default_tax_rate` int(2) NOT NULL,
  `rows_per_page` int(2) NOT NULL,
  `version` varchar(10) NOT NULL DEFAULT '1.0',
  `default_tax_rate2` int(11) NOT NULL DEFAULT '0',
  `dateformat` int(11) NOT NULL,
  `sales_prefix` varchar(20) DEFAULT NULL,
  `quote_prefix` varchar(20) DEFAULT NULL,
  `purchase_prefix` varchar(20) DEFAULT NULL,
  `transfer_prefix` varchar(20) DEFAULT NULL,
  `delivery_prefix` varchar(20) DEFAULT NULL,
  `payment_prefix` varchar(20) DEFAULT NULL,
  `return_prefix` varchar(20) DEFAULT NULL,
  `returnp_prefix` varchar(20) DEFAULT NULL,
  `expense_prefix` varchar(20) DEFAULT NULL,
  `item_addition` tinyint(1) NOT NULL DEFAULT '0',
  `theme` varchar(20) NOT NULL,
  `product_serial` tinyint(4) NOT NULL,
  `default_discount` int(11) NOT NULL,
  `product_discount` tinyint(1) NOT NULL DEFAULT '0',
  `discount_method` tinyint(4) NOT NULL,
  `tax1` tinyint(4) NOT NULL,
  `tax2` tinyint(4) NOT NULL,
  `overselling` tinyint(1) NOT NULL DEFAULT '0',
  `restrict_user` tinyint(4) NOT NULL DEFAULT '0',
  `restrict_calendar` tinyint(4) NOT NULL DEFAULT '0',
  `timezone` varchar(100) DEFAULT NULL,
  `iwidth` int(11) NOT NULL DEFAULT '0',
  `iheight` int(11) NOT NULL,
  `twidth` int(11) NOT NULL,
  `theight` int(11) NOT NULL,
  `watermark` tinyint(1) DEFAULT NULL,
  `reg_ver` tinyint(1) DEFAULT NULL,
  `allow_reg` tinyint(1) DEFAULT NULL,
  `reg_notification` tinyint(1) DEFAULT NULL,
  `auto_reg` tinyint(1) DEFAULT NULL,
  `protocol` varchar(20) NOT NULL DEFAULT 'mail',
  `mailpath` varchar(55) DEFAULT '/usr/sbin/sendmail',
  `smtp_host` varchar(100) DEFAULT NULL,
  `smtp_user` varchar(100) DEFAULT NULL,
  `smtp_pass` varchar(255) DEFAULT NULL,
  `smtp_port` varchar(10) DEFAULT '25',
  `smtp_crypto` varchar(10) DEFAULT NULL,
  `corn` datetime DEFAULT NULL,
  `customer_group` int(11) NOT NULL,
  `default_email` varchar(100) NOT NULL,
  `mmode` tinyint(1) NOT NULL,
  `bc_fix` tinyint(4) NOT NULL DEFAULT '0',
  `auto_detect_barcode` tinyint(1) NOT NULL DEFAULT '0',
  `captcha` tinyint(1) NOT NULL DEFAULT '1',
  `reference_format` tinyint(1) NOT NULL DEFAULT '1',
  `racks` tinyint(1) DEFAULT '0',
  `attributes` tinyint(1) NOT NULL DEFAULT '0',
  `product_expiry` tinyint(1) NOT NULL DEFAULT '0',
  `decimals` tinyint(2) NOT NULL DEFAULT '2',
  `qty_decimals` tinyint(2) NOT NULL DEFAULT '2',
  `decimals_sep` varchar(2) NOT NULL DEFAULT '.',
  `thousands_sep` varchar(2) NOT NULL DEFAULT ',',
  `invoice_view` tinyint(1) DEFAULT '0',
  `default_biller` int(11) DEFAULT NULL,
  `envato_username` varchar(50) DEFAULT NULL,
  `purchase_code` varchar(100) DEFAULT NULL,
  `rtl` tinyint(1) DEFAULT '0',
  `each_spent` decimal(15,4) DEFAULT NULL,
  `ca_point` tinyint(4) DEFAULT NULL,
  `each_sale` decimal(15,4) DEFAULT NULL,
  `sa_point` tinyint(4) DEFAULT NULL,
  `update` tinyint(1) DEFAULT '0',
  `sac` tinyint(1) DEFAULT '0',
  `display_all_products` tinyint(1) DEFAULT '0',
  `display_symbol` tinyint(1) DEFAULT NULL,
  `symbol` varchar(50) DEFAULT NULL,
  `remove_expired` tinyint(1) DEFAULT '0',
  `barcode_separator` varchar(2) NOT NULL DEFAULT '-',
  `set_focus` tinyint(1) NOT NULL DEFAULT '0',
  `price_group` int(11) DEFAULT NULL,
  `barcode_img` tinyint(1) NOT NULL DEFAULT '1',
  `ppayment_prefix` varchar(20) DEFAULT 'POP',
  `disable_editing` smallint(6) DEFAULT '90',
  `qa_prefix` varchar(55) DEFAULT NULL,
  `update_cost` tinyint(1) DEFAULT NULL,
  `apis` tinyint(1) NOT NULL DEFAULT '0',
  `state` varchar(100) DEFAULT NULL,
  `pdf_lib` varchar(20) DEFAULT 'dompdf',
  `challans_prefix` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`setting_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `sma_settings` (`setting_id`, `logo`, `logo2`, `site_name`, `language`, `default_warehouse`, `accounting_method`, `default_currency`, `default_tax_rate`, `rows_per_page`, `version`, `default_tax_rate2`, `dateformat`, `sales_prefix`, `quote_prefix`, `purchase_prefix`, `transfer_prefix`, `delivery_prefix`, `payment_prefix`, `return_prefix`, `returnp_prefix`, `expense_prefix`, `item_addition`, `theme`, `product_serial`, `default_discount`, `product_discount`, `discount_method`, `tax1`, `tax2`, `overselling`, `restrict_user`, `restrict_calendar`, `timezone`, `iwidth`, `iheight`, `twidth`, `theight`, `watermark`, `reg_ver`, `allow_reg`, `reg_notification`, `auto_reg`, `protocol`, `mailpath`, `smtp_host`, `smtp_user`, `smtp_pass`, `smtp_port`, `smtp_crypto`, `corn`, `customer_group`, `default_email`, `mmode`, `bc_fix`, `auto_detect_barcode`, `captcha`, `reference_format`, `racks`, `attributes`, `product_expiry`, `decimals`, `qty_decimals`, `decimals_sep`, `thousands_sep`, `invoice_view`, `default_biller`, `envato_username`, `purchase_code`, `rtl`, `each_spent`, `ca_point`, `each_sale`, `sa_point`, `update`, `sac`, `display_all_products`, `display_symbol`, `symbol`, `remove_expired`, `barcode_separator`, `set_focus`, `price_group`, `barcode_img`, `ppayment_prefix`, `disable_editing`, `qa_prefix`, `update_cost`, `apis`, `state`, `pdf_lib`, `challans_prefix`) VALUES (1, 'JI-W-300x80.png', 'JI-W-300x801.png', 'JI  Corporation', 'english', 1, 0, 'INR', 1, 25, '3.4.11', 1, 5, 'SALE', 'QUOTE', 'PO', 'TR', 'DO', 'IPAY', 'SR', 'PR', '', 0, 'default', 1, 1, 1, 1, 1, 1, 0, 1, 1, 'Asia/Kolkata', 3000, 5000, 150, 150, 0, 0, 0, 0, NULL, 'mail', '/usr/sbin/sendmail', 'pop.gmail.com', 'contact@appteko.com', 'Jia@12345', '25', NULL, NULL, 4, 'ji@jiaccessories.com', 0, 4, 0, 0, 2, 0, 1, 0, 2, 2, '.', ',', 2, 3, 'sgr1875', 'b69db101-15f6-4449-abdf-94b9710f79ad', 0, NULL, NULL, NULL, NULL, 0, 0, 1, 1, '₹', 0, '_', 0, 1, 1, 'POP', 390, '', 0, 0, 'GJ', 'mpdf', 'CLN');


#
# TABLE STRUCTURE FOR: sma_skrill
#

DROP TABLE IF EXISTS `sma_skrill`;

CREATE TABLE `sma_skrill` (
  `id` int(11) NOT NULL,
  `active` tinyint(4) NOT NULL,
  `account_email` varchar(255) NOT NULL DEFAULT 'testaccount2@moneybookers.com',
  `secret_word` varchar(20) NOT NULL DEFAULT 'mbtest',
  `skrill_currency` varchar(3) NOT NULL DEFAULT 'USD',
  `fixed_charges` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `extra_charges_my` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `extra_charges_other` decimal(25,4) NOT NULL DEFAULT '0.0000',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `sma_skrill` (`id`, `active`, `account_email`, `secret_word`, `skrill_currency`, `fixed_charges`, `extra_charges_my`, `extra_charges_other`) VALUES (1, 1, 'testaccount2@moneybookers.com', 'mbtest', 'USD', '0.0000', '0.0000', '0.0000');


#
# TABLE STRUCTURE FOR: sma_stock_count_items
#

DROP TABLE IF EXISTS `sma_stock_count_items`;

CREATE TABLE `sma_stock_count_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `stock_count_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(50) DEFAULT NULL,
  `product_name` varchar(255) DEFAULT NULL,
  `product_variant` varchar(55) DEFAULT NULL,
  `product_variant_id` int(11) DEFAULT NULL,
  `expected` decimal(15,4) NOT NULL,
  `counted` decimal(15,4) NOT NULL,
  `cost` decimal(25,4) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `stock_count_id` (`stock_count_id`),
  KEY `product_id` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_stock_counts
#

DROP TABLE IF EXISTS `sma_stock_counts`;

CREATE TABLE `sma_stock_counts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `reference_no` varchar(55) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `type` varchar(10) NOT NULL,
  `initial_file` varchar(50) NOT NULL,
  `final_file` varchar(50) DEFAULT NULL,
  `brands` varchar(50) DEFAULT NULL,
  `brand_names` varchar(100) DEFAULT NULL,
  `categories` varchar(50) DEFAULT NULL,
  `category_names` varchar(100) DEFAULT NULL,
  `note` text,
  `products` int(11) DEFAULT NULL,
  `rows` int(11) DEFAULT NULL,
  `differences` int(11) DEFAULT NULL,
  `matches` int(11) DEFAULT NULL,
  `missing` int(11) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `finalized` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `warehouse_id` (`warehouse_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;

INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (1, '2018-10-15 10:32:00', '', 1, 'full', '7cc69a976d21705d94767a5e78139b61.csv', NULL, '', '', '', '', NULL, 38, 130, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (2, '2018-10-16 03:42:00', '', 1, 'full', '31b6ff3407afe1c9e867a6f28592c9cf.csv', NULL, '', '', '', '', NULL, 51, 145, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (3, '2018-10-21 04:30:00', '', 1, 'full', '97be96c320f95bca72591d0dcb47030f.csv', NULL, '', '', '', '', NULL, 127, 329, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (4, '2018-10-22 10:07:00', '', 1, 'full', 'bf47650c2e150a883836f0492077c054.csv', NULL, '', '', '', '', NULL, 129, 336, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (5, '2018-10-22 10:08:00', '', 1, 'partial', '7e4591c69836f50eb5c776a1f0e160f1.csv', NULL, '1', 'JI', '2', 'Men', NULL, 114, 285, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (6, '2018-10-22 10:48:00', '', 1, 'full', '702daa42c83212448064059740cbe9ef.csv', NULL, '', '', '', '', NULL, 129, 336, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (7, '2018-10-22 10:48:00', '', 1, 'full', '7d1652367f5bf41373134727477d0e1d.csv', NULL, '', '', '', '', NULL, 129, 336, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (8, '2018-10-23 08:19:00', '', 1, 'full', 'ce87eb3cad70ef4b7b943336d194c5b8.csv', NULL, '', '', '', '', NULL, 131, 339, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (9, '2018-10-23 12:29:00', '', 1, 'full', '220ded35d6593541470aa5f51d88f281.csv', NULL, '', '', '', '', NULL, 131, 339, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (10, '2018-10-23 12:52:00', '', 1, 'full', 'b1c5b25ed3c36c290d7cedba504cb094.csv', NULL, '', '', '', '', NULL, 131, 339, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (11, '2018-10-23 13:37:00', '', 1, 'full', '226344d59e87c6cb73b76a893fcb2583.csv', NULL, '', '', '', '', NULL, 131, 339, NULL, NULL, NULL, 1, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_suspended_bills
#

DROP TABLE IF EXISTS `sma_suspended_bills`;

CREATE TABLE `sma_suspended_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) DEFAULT NULL,
  `count` int(11) NOT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `order_tax_id` int(11) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `biller_id` int(11) DEFAULT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `suspend_note` varchar(255) DEFAULT NULL,
  `shipping` decimal(15,4) DEFAULT '0.0000',
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_suspended_items
#

DROP TABLE IF EXISTS `sma_suspended_items`;

CREATE TABLE `sma_suspended_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `suspend_id` int(11) unsigned NOT NULL,
  `product_id` int(11) unsigned NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) NOT NULL,
  `quantity` decimal(15,4) DEFAULT '0.0000',
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `comment` varchar(255) DEFAULT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_tax_rates
#

DROP TABLE IF EXISTS `sma_tax_rates`;

CREATE TABLE `sma_tax_rates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(55) NOT NULL,
  `code` varchar(10) DEFAULT NULL,
  `rate` decimal(12,4) NOT NULL,
  `type` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (1, 'No Tax', 'NT', '0.0000', '2');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (3, 'GST @5%', 'GST5', '5.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (4, 'GST @12%', 'GST12', '12.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (5, 'GST @18%', 'GST18', '18.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (6, 'GST @28%', 'GST28', '28.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (7, 'GST @3%', 'GST3', '3.0000', '1');


#
# TABLE STRUCTURE FOR: sma_transfer_items
#

DROP TABLE IF EXISTS `sma_transfer_items`;

CREATE TABLE `sma_transfer_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transfer_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `option_id` int(11) DEFAULT NULL,
  `expiry` date DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `net_unit_cost` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) DEFAULT NULL,
  `quantity_balance` decimal(15,4) NOT NULL,
  `unit_cost` decimal(25,4) DEFAULT NULL,
  `real_unit_cost` decimal(25,4) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `transfer_id` (`transfer_id`),
  KEY `product_id` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_transfers
#

DROP TABLE IF EXISTS `sma_transfers`;

CREATE TABLE `sma_transfers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transfer_no` varchar(55) NOT NULL,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `from_warehouse_id` int(11) NOT NULL,
  `from_warehouse_code` varchar(55) NOT NULL,
  `from_warehouse_name` varchar(55) NOT NULL,
  `to_warehouse_id` int(11) NOT NULL,
  `to_warehouse_code` varchar(55) NOT NULL,
  `to_warehouse_name` varchar(55) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) DEFAULT NULL,
  `total_tax` decimal(25,4) DEFAULT NULL,
  `grand_total` decimal(25,4) DEFAULT NULL,
  `created_by` varchar(255) DEFAULT NULL,
  `status` varchar(55) NOT NULL DEFAULT 'pending',
  `shipping` decimal(25,4) NOT NULL DEFAULT '0.0000',
  `attachment` varchar(55) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;

INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (1, 'TR2019/08/0002', '2019-08-08 03:51:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '57496.1032', '10349.2968', '67845.4000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '10349.2968');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (2, 'TR2019/08/0003', '2019-08-14 04:56:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '10178.3905', '1832.1095', '12010.5000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '1832.1095');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (3, 'TR2019/08/0004', '2019-08-14 06:29:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '1355.9324', '244.0676', '1600.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '244.0676');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (4, 'TR2019/08/0005', '2019-08-21 03:25:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '343.2204', '61.7796', '405.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '61.7796');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (5, 'TR2019/09/0006', '2019-09-02 03:14:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '1186.4407', '213.5593', '1400.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '213.5593');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (6, 'TR2019/09/0007', '2019-09-14 03:24:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '7700.0000', '1386.0000', '9086.0000', '2', 'completed', '0.0000', NULL, '0.0000', '0.0000', '1386.0000');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (7, 'TR2019/09/0008', '2019-09-19 07:59:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '610.1694', '109.8306', '720.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '109.8306');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (8, 'TR2019/09/0009', '2019-09-23 10:35:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '3728.8140', '671.1860', '4400.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '671.1860');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (9, 'TR2019/09/0010', '2019-09-23 11:16:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '18064.8313', '3251.6687', '21316.5000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '3251.6687');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (10, 'TR2019/09/0011', '2019-09-24 09:16:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '19016.9490', '3423.0510', '22440.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '3423.0510');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (11, 'TR2019/09/0012', '2019-09-30 11:08:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '5508.4744', '991.5256', '6500.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '991.5256');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (12, 'TR2019/10/0013', '2019-10-01 11:00:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '7627.1184', '1372.8816', '9000.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '1372.8816');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (13, 'TR2019/10/0014', '2019-10-05 03:12:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '4550.0000', '819.0000', '5369.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '819.0000');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (14, 'TR2019/10/0015', '2019-10-17 03:19:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '5200.0000', '936.0000', '6136.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '936.0000');
INSERT INTO `sma_transfers` (`id`, `transfer_no`, `date`, `from_warehouse_id`, `from_warehouse_code`, `from_warehouse_name`, `to_warehouse_id`, `to_warehouse_code`, `to_warehouse_name`, `note`, `total`, `total_tax`, `grand_total`, `created_by`, `status`, `shipping`, `attachment`, `cgst`, `sgst`, `igst`) VALUES (15, 'TR2019/10/0016', '2019-10-21 11:47:00', 1, 'MT-01', 'Meghani Tower-01', 2, 'VN-01', 'VIKARAM NAGAR', '', '4355.0850', '783.9150', '5139.0000', '1', 'completed', '0.0000', NULL, '0.0000', '0.0000', '783.9150');


#
# TABLE STRUCTURE FOR: sma_units
#

DROP TABLE IF EXISTS `sma_units`;

CREATE TABLE `sma_units` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(10) NOT NULL,
  `name` varchar(55) NOT NULL,
  `base_unit` int(11) DEFAULT NULL,
  `operator` varchar(1) DEFAULT NULL,
  `unit_value` varchar(55) DEFAULT NULL,
  `operation_value` varchar(55) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `base_unit` (`base_unit`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (2, 'PCS', 'Piece', NULL, NULL, NULL, NULL);
INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (3, 'DZN', 'Dozen', NULL, NULL, NULL, NULL);
INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (4, 'BX', 'Box', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_user_logins
#

DROP TABLE IF EXISTS `sma_user_logins`;

CREATE TABLE `sma_user_logins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `company_id` int(11) DEFAULT NULL,
  `ip_address` varbinary(16) NOT NULL,
  `login` varchar(100) NOT NULL,
  `time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=396 DEFAULT CHARSET=utf8;

INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (156, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-02-25 00:27:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (157, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-02-25 00:28:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (158, 2, NULL, '142.93.209.252', 'riddhi@jiaccessories.com', '2019-02-25 00:36:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (159, 2, NULL, '142.93.209.252', 'riddhi@jiaccessories.com', '2019-03-14 03:16:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (160, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-14 03:39:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (161, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-14 04:58:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (162, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-17 00:13:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (163, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-17 00:19:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (164, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-18 04:34:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (165, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-18 05:18:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (166, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-18 08:31:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (167, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-20 02:05:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (168, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-22 01:42:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (169, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-23 00:56:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (170, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-30 22:17:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (171, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-03-31 23:42:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (172, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-01 03:37:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (173, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-01 06:30:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (174, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-01 22:59:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (175, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-02 04:30:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (176, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-02 05:36:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (177, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-03 00:56:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (178, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-04 00:34:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (179, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-04 01:40:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (180, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-05 01:41:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (181, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-06 03:55:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (182, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-08 00:46:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (183, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-10 22:26:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (184, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-11 23:19:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (185, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-12 02:26:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (186, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-12 22:22:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (187, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-13 04:25:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (188, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-15 00:10:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (189, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-15 21:59:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (190, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-16 23:18:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (191, 1, NULL, '142.93.209.252', 'jiaccessories@outlook.com', '2019-04-17 01:32:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (192, 1, NULL, '113.193.210.135', 'jiaccessories@outlook.com', '2019-04-17 09:29:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (193, 1, NULL, '117.222.95.66', 'jiaccessories@outlook.com', '2019-04-17 22:58:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (194, 1, NULL, '113.193.210.135', 'jiaccessories@outlook.com', '2019-04-18 07:55:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (195, 1, NULL, '117.198.177.165', 'jiaccessories@outlook.com', '2019-04-18 22:15:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (196, 1, NULL, '117.222.88.17', 'jiaccessories@outlook.com', '2019-04-19 22:06:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (197, 1, NULL, '49.34.148.124', 'jiaccessories@outlook.com', '2019-04-20 10:19:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (198, 1, NULL, '117.222.91.57', 'jiaccessories@outlook.com', '2019-04-21 22:03:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (199, 1, NULL, '117.198.184.146', 'jiaccessories@outlook.com', '2019-04-23 22:29:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (200, 1, NULL, '117.198.184.146', 'jiaccessories@outlook.com', '2019-04-24 02:18:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (201, 1, NULL, '117.222.88.209', 'jiaccessories@outlook.com', '2019-04-24 21:51:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (202, 1, NULL, '117.222.88.209', 'jiaccessories@outlook.com', '2019-04-25 22:03:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (203, 1, NULL, '117.222.88.209', 'jiaccessories@outlook.com', '2019-04-26 00:46:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (204, 1, NULL, '117.222.88.209', 'jiaccessories@outlook.com', '2019-04-26 21:55:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (205, 1, NULL, '117.222.88.209', 'jiaccessories@outlook.com', '2019-04-27 02:07:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (206, 1, NULL, '117.198.184.199', 'jiaccessories@outlook.com', '2019-04-28 22:45:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (207, 1, NULL, '117.198.190.222', 'jiaccessories@outlook.com', '2019-04-30 03:18:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (208, 1, NULL, '113.193.210.136', 'jiaccessories@outlook.com', '2019-04-30 03:33:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (209, 1, NULL, '117.198.177.240', 'jiaccessories@outlook.com', '2019-04-30 22:33:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (210, 1, NULL, '113.193.210.135', 'jiaccessories@outlook.com', '2019-05-01 23:18:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (211, 1, NULL, '117.198.186.35', 'jiaccessories@outlook.com', '2019-05-01 23:19:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (212, 1, NULL, '117.198.186.35', 'jiaccessories@outlook.com', '2019-05-02 05:07:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (213, 1, NULL, '117.198.181.106', 'jiaccessories@outlook.com', '2019-05-02 23:06:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (214, 1, NULL, '117.222.90.72', 'jiaccessories@outlook.com', '2019-05-03 22:15:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (215, 1, NULL, '117.222.90.72', 'jiaccessories@outlook.com', '2019-05-04 01:13:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (216, 1, NULL, '117.222.90.72', 'jiaccessories@outlook.com', '2019-05-05 22:03:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (217, 1, NULL, '117.222.90.72', 'jiaccessories@outlook.com', '2019-05-06 04:15:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (218, 1, NULL, '117.198.181.26', 'jiaccessories@outlook.com', '2019-05-08 00:01:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (219, 1, NULL, '117.198.182.226', 'jiaccessories@outlook.com', '2019-05-08 22:20:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (220, 1, NULL, '117.198.183.148', 'jiaccessories@outlook.com', '2019-05-09 21:56:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (221, 1, NULL, '117.198.177.109', 'jiaccessories@outlook.com', '2019-05-10 22:20:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (222, 1, NULL, '117.198.179.10', 'jiaccessories@outlook.com', '2019-05-14 02:42:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (223, 1, NULL, '117.198.179.10', 'jiaccessories@outlook.com', '2019-05-14 06:11:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (224, 1, NULL, '117.198.188.116', 'jiaccessories@outlook.com', '2019-05-15 22:20:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (225, 1, NULL, '117.198.185.13', 'jiaccessories@outlook.com', '2019-05-19 22:13:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (226, 1, NULL, '117.198.185.13', 'jiaccessories@outlook.com', '2019-05-20 05:20:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (227, 1, NULL, '117.222.88.87', 'jiaccessories@outlook.com', '2019-05-21 05:14:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (228, 1, NULL, '117.198.187.123', 'jiaccessories@outlook.com', '2019-05-22 00:13:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (229, 1, NULL, '117.198.187.123', 'jiaccessories@outlook.com', '2019-05-22 23:29:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (230, 1, NULL, '117.198.183.98', 'jiaccessories@outlook.com', '2019-05-28 00:01:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (231, 1, NULL, '113.193.210.136', 'jiaccessories@outlook.com', '2019-05-29 00:05:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (232, 1, NULL, '103.51.217.183', 'jiaccessories@outlook.com', '2019-05-29 00:06:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (233, 1, NULL, '103.51.217.183', 'jiaccessories@outlook.com', '2019-05-29 00:36:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (234, 1, NULL, '117.198.176.160', 'jiaccessories@outlook.com', '2019-05-29 04:37:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (235, 1, NULL, '103.51.217.183', 'jiaccessories@outlook.com', '2019-05-29 21:30:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (236, 1, NULL, '117.198.184.57', 'jiaccessories@outlook.com', '2019-05-30 00:45:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (237, 1, NULL, '117.222.88.141', 'jiaccessories@outlook.com', '2019-06-02 21:51:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (238, 1, NULL, '117.222.89.31', 'jiaccessories@outlook.com', '2019-06-03 21:34:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (239, 1, NULL, '117.222.95.239', 'jiaccessories@outlook.com', '2019-06-04 03:20:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (240, 1, NULL, '117.222.95.239', 'jiaccessories@outlook.com', '2019-06-04 22:51:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (241, 1, NULL, '117.222.95.205', 'jiaccessories@outlook.com', '2019-06-05 03:16:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (242, 1, NULL, '117.222.95.205', 'jiaccessories@outlook.com', '2019-06-05 22:28:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (243, 1, NULL, '117.222.93.51', 'jiaccessories@outlook.com', '2019-06-06 23:23:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (244, 1, NULL, '117.248.121.27', 'jiaccessories@outlook.com', '2019-06-07 04:57:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (245, 1, NULL, '117.248.121.27', 'jiaccessories@outlook.com', '2019-06-08 00:37:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (246, 1, NULL, '117.198.179.153', 'jiaccessories@outlook.com', '2019-06-10 02:08:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (247, 1, NULL, '117.222.88.136', 'jiaccessories@outlook.com', '2019-06-11 00:59:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (248, 1, NULL, '113.193.193.246', 'jiaccessories@outlook.com', '2019-06-11 04:47:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (249, 1, NULL, '123.136.226.120', 'jiaccessories@outlook.com', '2019-06-11 22:44:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (250, 1, NULL, '117.248.122.102', 'jiaccessories@outlook.com', '2019-06-12 00:19:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (251, 1, NULL, '123.136.226.120', 'jiaccessories@outlook.com', '2019-06-12 04:23:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (252, 1, NULL, '123.136.227.59', 'jiaccessories@outlook.com', '2019-06-12 21:27:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (253, 1, NULL, '123.136.227.59', 'jiaccessories@outlook.com', '2019-06-12 21:48:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (254, 1, NULL, '117.198.182.86', 'jiaccessories@outlook.com', '2019-06-14 21:47:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (255, 1, NULL, '117.198.188.12', 'jiaccessories@outlook.com', '2019-06-15 04:31:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (256, 1, NULL, '117.198.191.214', 'jiaccessories@outlook.com', '2019-06-16 21:57:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (257, 1, NULL, '117.248.120.66', 'jiaccessories@outlook.com', '2019-06-17 04:10:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (258, 1, NULL, '117.248.120.66', 'jiaccessories@outlook.com', '2019-06-17 21:43:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (259, 1, NULL, '117.248.120.66', 'jiaccessories@outlook.com', '2019-06-18 01:02:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (260, 1, NULL, '117.222.88.31', 'jiaccessories@outlook.com', '2019-06-18 03:28:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (261, 1, NULL, '117.222.94.68', 'jiaccessories@outlook.com', '2019-06-19 03:33:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (262, 1, NULL, '117.222.94.68', 'jiaccessories@outlook.com', '2019-06-20 00:27:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (263, 1, NULL, '117.198.188.11', 'jiaccessories@outlook.com', '2019-06-20 22:55:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (264, 1, NULL, '117.222.90.125', 'jiaccessories@outlook.com', '2019-06-22 03:26:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (265, 1, NULL, '117.222.90.125', 'jiaccessories@outlook.com', '2019-06-22 23:15:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (266, 1, NULL, '117.198.177.181', 'jiaccessories@outlook.com', '2019-06-25 00:23:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (267, 1, NULL, '117.198.176.10', 'jiaccessories@outlook.com', '2019-06-25 04:41:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (268, 1, NULL, '117.198.176.206', 'jiaccessories@outlook.com', '2019-06-26 01:19:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (269, 1, NULL, '117.222.92.250', 'jiaccessories@outlook.com', '2019-06-26 22:03:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (270, 1, NULL, '117.198.188.127', 'jiaccessories@outlook.com', '2019-06-27 03:25:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (271, 1, NULL, '117.222.92.59', 'jiaccessories@outlook.com', '2019-06-27 23:30:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (272, 1, NULL, '117.198.190.217', 'jiaccessories@outlook.com', '2019-06-28 22:40:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (273, 1, NULL, '117.198.190.217', 'jiaccessories@outlook.com', '2019-06-29 00:59:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (274, 1, NULL, '117.198.190.217', 'jiaccessories@outlook.com', '2019-06-29 06:23:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (275, 1, NULL, '117.222.94.80', 'jiaccessories@outlook.com', '2019-06-30 22:39:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (276, 1, NULL, '117.222.94.80', 'jiaccessories@outlook.com', '2019-07-01 05:41:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (277, 1, NULL, '49.36.1.60', 'jiaccessories@outlook.com', '2019-07-01 08:16:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (278, 1, NULL, '117.222.92.27', 'jiaccessories@outlook.com', '2019-07-01 22:17:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (279, 1, NULL, '117.222.95.15', 'jiaccessories@outlook.com', '2019-07-02 22:37:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (280, 1, NULL, '117.198.187.7', 'jiaccessories@outlook.com', '2019-07-03 03:40:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (281, 1, NULL, '117.198.187.7', 'jiaccessories@outlook.com', '2019-07-03 23:28:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (282, 1, NULL, '117.222.88.70', 'jiaccessories@outlook.com', '2019-07-04 04:01:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (283, 1, NULL, '117.198.180.65', 'jiaccessories@outlook.com', '2019-07-05 04:05:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (284, 1, NULL, '103.51.217.183', 'jiaccessories@outlook.com', '2019-07-05 22:40:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (285, 1, NULL, '117.198.180.65', 'jiaccessories@outlook.com', '2019-07-05 23:39:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (286, 1, NULL, '117.198.182.172', 'jiaccessories@outlook.com', '2019-07-06 03:41:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (287, 1, NULL, '113.193.194.86', 'jiaccessories@outlook.com', '2019-07-09 04:15:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (288, 1, NULL, '117.198.186.232', 'jiaccessories@outlook.com', '2019-07-09 22:22:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (289, 1, NULL, '117.222.90.226', 'jiaccessories@outlook.com', '2019-07-11 03:07:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (290, 1, NULL, '117.222.95.157', 'jiaccessories@outlook.com', '2019-07-13 02:08:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (291, 1, NULL, '117.248.122.1', 'jiaccessories@outlook.com', '2019-07-15 23:55:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (292, 1, NULL, '117.248.121.151', 'jiaccessories@outlook.com', '2019-07-16 23:56:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (293, 1, NULL, '117.248.121.36', 'jiaccessories@outlook.com', '2019-07-18 21:48:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (294, 1, NULL, '117.222.92.176', 'jiaccessories@outlook.com', '2019-07-19 04:22:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (295, 1, NULL, '117.198.180.156', 'jiaccessories@outlook.com', '2019-07-20 02:07:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (296, 1, NULL, '113.193.194.111', 'jiaccessories@outlook.com', '2019-07-20 05:12:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (297, 1, NULL, '117.198.180.156', 'jiaccessories@outlook.com', '2019-07-20 05:28:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (298, 1, NULL, '117.198.186.235', 'jiaccessories@outlook.com', '2019-07-23 02:01:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (299, 1, NULL, '117.198.186.235', 'jiaccessories@outlook.com', '2019-07-23 05:06:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (300, 1, NULL, '117.198.177.50', 'jiaccessories@outlook.com', '2019-07-24 23:55:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (301, 1, NULL, '117.198.185.59', 'jiaccessories@outlook.com', '2019-07-26 04:25:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (302, 1, NULL, '117.198.186.43', 'jiaccessories@outlook.com', '2019-07-27 04:01:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (303, 1, NULL, '117.198.176.167', 'jiaccessories@outlook.com', '2019-07-30 02:18:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (304, 1, NULL, '117.198.185.138', 'jiaccessories@outlook.com', '2019-07-30 22:03:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (305, 1, NULL, '117.198.178.89', 'jiaccessories@outlook.com', '2019-08-01 02:49:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (306, 1, NULL, '157.32.182.137', 'jiaccessories@outlook.com', '2019-08-01 21:33:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (307, 1, NULL, '117.198.180.172', 'jiaccessories@outlook.com', '2019-08-02 08:36:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (308, 1, NULL, '117.198.188.233', 'jiaccessories@outlook.com', '2019-08-03 02:29:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (309, 1, NULL, '117.248.123.31', 'jiaccessories@outlook.com', '2019-08-05 23:29:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (310, 1, NULL, '59.93.205.161', 'jiaccessories@outlook.com', '2019-08-06 22:24:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (311, 1, NULL, '59.93.205.151', 'jiaccessories@outlook.com', '2019-08-07 22:07:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (312, 1, NULL, '117.198.177.239', 'jiaccessories@outlook.com', '2019-08-08 01:08:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (313, 1, NULL, '117.198.177.239', 'jiaccessories@outlook.com', '2019-08-08 04:43:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (314, 1, NULL, '117.198.177.239', 'jiaccessories@outlook.com', '2019-08-08 22:03:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (315, 1, NULL, '117.198.181.90', 'jiaccessories@outlook.com', '2019-08-12 02:22:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (316, 1, NULL, '117.198.180.16', 'jiaccessories@outlook.com', '2019-08-12 21:56:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (317, 1, NULL, '117.198.184.39', 'jiaccessories@outlook.com', '2019-08-13 22:02:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (318, 1, NULL, '117.198.191.108', 'jiaccessories@outlook.com', '2019-08-16 23:03:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (319, 1, NULL, '113.193.193.236', 'jiaccessories@outlook.com', '2019-08-17 23:47:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (320, 1, NULL, '59.93.206.21', 'jiaccessories@outlook.com', '2019-08-19 21:42:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (321, 1, NULL, '117.198.190.206', 'jiaccessories@outlook.com', '2019-08-20 00:05:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (322, 1, NULL, '49.36.8.152', 'jiaccessories@outlook.com', '2019-09-08 00:01:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (323, 1, NULL, '49.36.8.152', 'jiaccessories@outlook.com', '2019-09-08 00:05:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (324, 2, NULL, '117.198.178.255', 'riddhi@jiaccessories.com', '2019-09-08 22:36:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (325, 2, NULL, '117.248.122.215', 'riddhi@jiaccessories.com', '2019-09-13 21:50:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (326, 2, NULL, '117.198.176.54', 'riddhi@jiaccessories.com', '2019-09-14 04:16:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (327, 2, NULL, '117.248.121.59', 'riddhi@jiaccessories.com', '2019-09-16 04:23:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (328, 1, NULL, '117.248.121.59', 'jiaccessories@outlook.com', '2019-09-16 04:54:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (329, 1, NULL, '49.36.12.84', 'jiaccessories@outlook.com', '2019-09-16 05:04:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (330, 1, NULL, '117.248.120.242', 'jiaccessories@outlook.com', '2019-09-17 03:59:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (331, 1, NULL, '49.36.12.84', 'jiaccessories@outlook.com', '2019-09-17 04:08:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (332, 1, NULL, '117.248.120.242', 'jiaccessories@outlook.com', '2019-09-17 22:47:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (333, 1, NULL, '117.198.187.165', 'jiaccessories@outlook.com', '2019-09-19 02:28:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (334, 1, NULL, '59.93.204.23', 'jiaccessories@outlook.com', '2019-09-19 04:35:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (335, 1, NULL, '117.248.121.176', 'jiaccessories@outlook.com', '2019-09-19 21:54:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (336, 1, NULL, '59.93.206.236', 'jiaccessories@outlook.com', '2019-09-20 22:14:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (337, 1, NULL, '117.198.184.142', 'jiaccessories@outlook.com', '2019-09-23 02:47:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (338, 1, NULL, '117.198.176.90', 'jiaccessories@outlook.com', '2019-09-24 02:53:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (339, 1, NULL, '117.198.189.42', 'jiaccessories@outlook.com', '2019-09-24 22:56:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (340, 1, NULL, '59.93.205.181', 'jiaccessories@outlook.com', '2019-09-25 05:23:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (341, 1, NULL, '117.198.188.121', 'jiaccessories@outlook.com', '2019-09-30 05:02:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (342, 1, NULL, '117.198.185.147', 'jiaccessories@outlook.com', '2019-09-30 23:14:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (343, 1, NULL, '117.198.189.138', 'jiaccessories@outlook.com', '2019-10-01 05:03:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (344, 1, NULL, '117.198.185.44', 'jiaccessories@outlook.com', '2019-10-02 23:39:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (345, 1, NULL, '117.198.187.9', 'jiaccessories@outlook.com', '2019-10-03 22:55:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (346, 1, NULL, '117.198.181.41', 'jiaccessories@outlook.com', '2019-10-04 21:42:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (347, 1, NULL, '117.198.182.152', 'jiaccessories@outlook.com', '2019-10-07 00:50:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (348, 1, NULL, '59.93.205.5', 'jiaccessories@outlook.com', '2019-10-07 05:32:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (349, 1, NULL, '117.198.191.118', 'jiaccessories@outlook.com', '2019-10-08 01:03:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (350, 1, NULL, '117.198.184.48', 'jiaccessories@outlook.com', '2019-10-09 02:32:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (351, 1, NULL, '117.212.138.21', 'jiaccessories@outlook.com', '2019-10-10 04:39:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (352, 1, NULL, '59.93.205.141', 'jiaccessories@outlook.com', '2019-10-10 21:48:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (353, 1, NULL, '117.212.137.6', 'jiaccessories@outlook.com', '2019-10-11 03:35:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (354, 1, NULL, '117.198.180.206', 'jiaccessories@outlook.com', '2019-10-14 05:27:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (355, 1, NULL, '117.198.184.228', 'jiaccessories@outlook.com', '2019-10-15 06:04:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (356, 1, NULL, '59.93.207.194', 'jiaccessories@outlook.com', '2019-10-15 23:45:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (357, 1, NULL, '117.198.185.255', 'jiaccessories@outlook.com', '2019-10-16 05:49:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (358, 1, NULL, '117.198.183.234', 'jiaccessories@outlook.com', '2019-10-16 21:45:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (359, 1, NULL, '59.93.206.127', 'jiaccessories@outlook.com', '2019-10-18 00:52:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (360, 1, NULL, '59.93.206.127', 'jiaccessories@outlook.com', '2019-10-18 04:34:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (361, 1, NULL, '117.248.122.61', 'jiaccessories@outlook.com', '2019-10-19 02:58:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (362, 1, NULL, '117.248.122.24', 'jiaccessories@outlook.com', '2019-10-19 06:05:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (363, 1, NULL, '117.198.179.168', 'jiaccessories@outlook.com', '2019-10-21 00:15:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (364, 1, NULL, '117.198.177.37', 'jiaccessories@outlook.com', '2019-10-21 06:17:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (365, 1, NULL, '117.198.177.37', 'jiaccessories@outlook.com', '2019-10-21 21:55:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (366, 1, NULL, '117.198.177.113', 'jiaccessories@outlook.com', '2019-10-22 21:38:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (367, 1, NULL, '117.198.177.113', 'jiaccessories@outlook.com', '2019-10-23 04:01:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (368, 1, NULL, '117.248.121.28', 'jiaccessories@outlook.com', '2019-10-24 02:05:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (369, 1, NULL, '117.248.121.75', 'jiaccessories@outlook.com', '2019-10-25 04:59:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (370, 1, NULL, '59.93.204.83', 'jiaccessories@outlook.com', '2019-10-26 01:23:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (371, 1, NULL, '117.198.181.115', 'jiaccessories@outlook.com', '2019-11-03 01:53:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (372, 1, NULL, '117.198.187.235', 'jiaccessories@outlook.com', '2019-11-13 00:23:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (373, 1, NULL, '49.36.0.240', 'jiaccessories@outlook.com', '2019-11-15 00:08:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (374, 1, NULL, '49.36.4.100', 'jiaccessories@outlook.com', '2019-11-15 22:09:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (375, 1, NULL, '49.36.0.216', 'jiaccessories@outlook.com', '2019-11-18 06:39:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (376, 1, NULL, '49.36.4.156', 'jiaccessories@outlook.com', '2019-11-23 21:35:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (377, 1, NULL, '49.34.93.206', 'jiaccessories@outlook.com', '2019-12-12 22:39:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (378, 1, NULL, '103.51.217.183', 'jiaccessories@outlook.com', '2020-01-11 00:49:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (379, 1, NULL, '49.36.70.42', 'jiaccessories@outlook.com', '2020-01-26 05:46:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (380, 1, NULL, '157.32.179.112', 'jiaccessories@outlook.com', '2020-02-13 01:14:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (381, 1, NULL, '43.251.72.35', 'vikykothiya420@gmail.com', '2020-12-29 02:07:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (382, 1, NULL, '43.251.72.35', 'vikykothiya420@gmail.com', '2020-12-29 03:16:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (383, 1, NULL, '103.81.209.242', 'vikykothiya420@gmail.com', '2021-01-11 23:08:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (384, 1, NULL, '43.251.72.35', 'vikykothiya420@gmail.com', '2021-01-11 23:08:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (385, 1, NULL, '27.62.143.231', 'vikykothiya420@gmail.com', '2021-01-12 21:59:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (386, 1, NULL, '43.251.72.35', 'vikykothiya420@gmail.com', '2021-01-12 22:19:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (387, 1, NULL, '27.62.43.15', 'vikykothiya420@gmail.com', '2021-01-17 21:23:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (388, 1, NULL, '157.49.246.38', 'Vikykothiya420@gmail.com', '2021-01-18 12:18:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (389, 1, NULL, '43.251.72.35', 'vikykothiya420@gmail.com', '2021-01-18 21:43:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (390, 1, NULL, '103.81.209.219', 'vikykothiya420@gmail.com', '2021-01-18 21:50:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (391, 1, NULL, '103.81.209.219', 'vikykothiya420@gmail.com', '2021-01-18 21:58:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (392, 1, NULL, '43.251.72.35', 'vikykothiya420@gmail.com', '2021-01-19 00:10:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (393, 1, NULL, '157.46.120.243', 'Vikykothiya420@gmail.com', '2021-01-19 04:22:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (394, 1, NULL, '27.62.121.230', 'vikykothiya420@gmail.com', '2021-01-21 07:38:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (395, 1, NULL, '104.35.128.45', 'vikykothiya420@gmail.com', '2021-01-23 00:16:32');


#
# TABLE STRUCTURE FOR: sma_users
#

DROP TABLE IF EXISTS `sma_users`;

CREATE TABLE `sma_users` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `last_ip_address` varbinary(45) DEFAULT NULL,
  `ip_address` varbinary(45) NOT NULL,
  `username` varchar(100) NOT NULL,
  `password` varchar(40) NOT NULL,
  `salt` varchar(40) DEFAULT NULL,
  `email` varchar(100) NOT NULL,
  `activation_code` varchar(40) DEFAULT NULL,
  `forgotten_password_code` varchar(40) DEFAULT NULL,
  `forgotten_password_time` int(11) unsigned DEFAULT NULL,
  `remember_code` varchar(40) DEFAULT NULL,
  `created_on` int(11) unsigned NOT NULL,
  `last_login` int(11) unsigned DEFAULT NULL,
  `active` tinyint(1) unsigned DEFAULT NULL,
  `first_name` varchar(50) DEFAULT NULL,
  `last_name` varchar(50) DEFAULT NULL,
  `company` varchar(100) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `avatar` varchar(55) DEFAULT NULL,
  `gender` varchar(20) DEFAULT NULL,
  `group_id` int(10) unsigned NOT NULL,
  `warehouse_id` int(10) unsigned DEFAULT NULL,
  `biller_id` int(10) unsigned DEFAULT NULL,
  `company_id` int(11) DEFAULT NULL,
  `show_cost` tinyint(1) DEFAULT '0',
  `show_price` tinyint(1) DEFAULT '0',
  `award_points` int(11) DEFAULT '0',
  `view_right` tinyint(1) NOT NULL DEFAULT '0',
  `edit_right` tinyint(1) NOT NULL DEFAULT '0',
  `allow_discount` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `group_id` (`group_id`,`warehouse_id`,`biller_id`),
  KEY `group_id_2` (`group_id`,`company_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (1, '104.35.128.45', '\0\0', 'owner', '32b27fd1996e4ad0432fa0cd69775b1eeba9d5b9', NULL, 'vikykothiya420@gmail.com', NULL, NULL, NULL, '5dd83e24d5cf67b9e4ffac14cf606bc4530b1448', 1351661704, 1611386192, 1, 'JI', 'Corporation', 'JI Corporation', '012345678', NULL, 'male', 1, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (2, '117.248.121.59', '142.93.209.252', 'riddhi@jiaccessories.com', 'cdd84d87e9b5e753d00e2e0881ddae716c391a71', NULL, 'riddhi@jiaccessories.com', NULL, NULL, NULL, 'b929068b3904e01afc0fdf1a4acaf4548aac1b11', 1551079901, 1568633030, 1, 'Riddhi', 'Vekariya', 'JI Accessories', '8200531260', NULL, 'female', 2, 0, 0, NULL, 0, 0, 0, 1, 0, 0);


#
# TABLE STRUCTURE FOR: sma_variants
#

DROP TABLE IF EXISTS `sma_variants`;

CREATE TABLE `sma_variants` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(55) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8;

INSERT INTO `sma_variants` (`id`, `name`) VALUES (1, 'CLR: Black');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (3, 'CLR: Brown');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (4, 'CLR: Tan');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (5, 'CLR: Blue');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (6, 'CLR: Green');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (7, 'CLR: Yellow');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (8, 'CLR: Red');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (10, 'SZ: XXL');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (11, 'CLR: Metallic');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (12, 'CLR: Peanut');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (13, 'CLR: Choco');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (14, 'CLR: Caramel');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (15, 'CLR: Coffee');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (16, 'CLR: Pink');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (17, 'LR: Honey Met');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (18, 'LR: Golf Met');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (19, 'LR: Evolution');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (20, 'LR: Sunshine');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (21, 'LR: Envy Tan');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (22, 'LR: Botega');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (23, 'LR: Magic');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (24, 'LR: Palmila');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (25, 'LR: Sun Shine');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (26, 'LR: Honey');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (27, 'LR: Point');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (28, 'LR:  Galan');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (29, 'LR: Metro');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (30, 'LR: IMP Palmila');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (31, 'LR: IMP Metro');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (32, 'LR: Golf');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (33, 'LR: Magic 1');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (34, 'LR: Palmila 1');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (35, 'LR: Indian Nova');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (36, 'LR: Bali');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (37, 'LR: Melodi');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (38, 'LR: Santafi');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (39, 'LR: Webs');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (40, 'LR: Crystal');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (41, 'LR: LCE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (42, 'LR: Tango');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (43, 'SZ: S');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (44, 'SZ: M');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (45, 'SZ: L');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (46, 'SZ: XL');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (47, 'SZ: XXXL');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (48, 'LR: Imported');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (49, 'LR: IMP Magic');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (50, 'LR: LIPARI');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (51, 'LR: Tommy');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (52, 'LR: Rivet');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (53, 'LR: Cobra');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (54, 'LR: NHZ');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (55, 'CLR: Turquoise');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (56, 'LR: KRT');


#
# TABLE STRUCTURE FOR: sma_warehouses
#

DROP TABLE IF EXISTS `sma_warehouses`;

CREATE TABLE `sma_warehouses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `address` varchar(255) NOT NULL,
  `map` varchar(255) DEFAULT NULL,
  `phone` varchar(55) DEFAULT NULL,
  `email` varchar(55) DEFAULT NULL,
  `price_group_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (1, 'MT-01', 'Meghani Tower-01', '<p>146 Meghani Tower,delhi gate,station Road Surat-395001</p>', NULL, '', '', 1);
INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (2, 'VN-01', 'VIKARAM NAGAR', '<p>152 VIKARAM NAGAR</p>', NULL, '', '', 1);


#
# TABLE STRUCTURE FOR: sma_warehouses_products
#

DROP TABLE IF EXISTS `sma_warehouses_products`;

CREATE TABLE `sma_warehouses_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `rack` varchar(55) DEFAULT NULL,
  `avg_cost` decimal(25,4) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  KEY `warehouse_id` (`warehouse_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1062 DEFAULT CHARSET=utf8;

INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7, 1, 1, '52.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8, 4, 1, '6.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9, 5, 1, '4.0000', NULL, '3350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (11, 7, 1, '39.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (12, 8, 1, '0.0000', NULL, '1840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (13, 9, 1, '22.0000', NULL, '1840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (14, 10, 1, '9.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (15, 11, 1, '6.0000', NULL, '960.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (16, 12, 1, '18.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (17, 13, 1, '35.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (18, 14, 1, '42.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (19, 15, 1, '12.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (21, 17, 1, '12.0000', NULL, '1200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (23, 19, 1, '9.0000', NULL, '1200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (24, 20, 1, '0.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (25, 21, 1, '0.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (26, 22, 1, '0.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (27, 23, 1, '7.0000', NULL, '1100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (28, 24, 1, '9.0000', NULL, '1100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (29, 25, 1, '15.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (30, 26, 1, '0.0000', NULL, '1100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (31, 27, 1, '0.0000', NULL, '1100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (32, 28, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (33, 29, 1, '6.0000', NULL, '1350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (34, 30, 1, '6.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (36, 32, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (37, 33, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (38, 34, 1, '0.0000', NULL, '1940.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (39, 35, 1, '12.0000', NULL, '1140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (40, 36, 1, '30.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (41, 37, 1, '40.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (42, 38, 1, '9.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (43, 39, 1, '0.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (44, 40, 1, '0.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (45, 41, 1, '0.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (46, 42, 1, '18.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (47, 43, 1, '18.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (48, 44, 1, '24.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (49, 45, 1, '6.0000', NULL, '580.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (50, 46, 1, '41.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (51, 47, 1, '40.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (52, 48, 1, '42.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (53, 49, 1, '36.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (54, 50, 1, '37.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (55, 51, 1, '40.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (56, 52, 1, '42.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (57, 53, 1, '6.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (58, 54, 1, '20.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (59, 55, 1, '26.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (60, 56, 1, '28.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (61, 57, 1, '7.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (62, 58, 1, '18.0000', NULL, '1100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (63, 59, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (64, 60, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (65, 61, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (66, 62, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (67, 63, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (68, 64, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (69, 65, 1, '0.0000', NULL, '1100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (70, 66, 1, '0.0000', NULL, '1100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (71, 67, 1, '0.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (72, 68, 1, '6.0000', NULL, '1080.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (73, 69, 1, '0.0000', NULL, '1230.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (74, 70, 1, '0.0000', NULL, '1080.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (75, 71, 1, '0.0000', NULL, '1180.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (76, 72, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (77, 73, 1, '8.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (78, 74, 1, '0.0000', NULL, '1230.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (79, 75, 1, '0.0000', NULL, '1230.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (80, 76, 1, '12.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (81, 77, 1, '0.0000', NULL, '1230.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (82, 78, 1, '0.0000', NULL, '1230.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (83, 79, 1, '0.0000', NULL, '1080.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (84, 80, 1, '0.0000', NULL, '1080.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (85, 81, 1, '6.0000', NULL, '1080.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (86, 82, 1, '4.0000', NULL, '1180.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (87, 83, 1, '0.0000', NULL, '1080.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (89, 85, 1, '0.0000', NULL, '1130.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (90, 86, 1, '0.0000', NULL, '1180.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (91, 87, 1, '0.0000', NULL, '1180.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (92, 88, 1, '0.0000', NULL, '1180.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (93, 89, 1, '0.0000', NULL, '1180.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (94, 90, 1, '0.0000', NULL, '1180.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (95, 91, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (96, 92, 1, '6.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (97, 93, 1, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (98, 94, 1, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (100, 96, 1, '0.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (101, 97, 1, '0.0000', NULL, '1230.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (102, 98, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (103, 99, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (104, 100, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (105, 101, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (106, 102, 1, '2.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (107, 103, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (108, 104, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (109, 105, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (110, 106, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (111, 107, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (112, 108, 1, '0.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (113, 109, 1, '2.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (114, 110, 1, '2.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (115, 111, 1, '0.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (116, 112, 1, '0.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (117, 113, 1, '0.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (119, 115, 1, '7.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (120, 116, 1, '10.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (121, 117, 1, '7.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (122, 118, 1, '2.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (123, 119, 1, '0.0000', NULL, '890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (124, 120, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (125, 121, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (126, 122, 1, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (127, 123, 1, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (128, 124, 1, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (129, 125, 1, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (130, 126, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (131, 127, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (132, 128, 1, '60.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (133, 129, 1, '60.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (135, 131, 1, '42.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (136, 132, 1, '36.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (137, 133, 1, '6.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (138, 134, 1, '12.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (139, 135, 1, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (140, 136, 1, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (141, 137, 1, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (142, 138, 1, '0.0000', NULL, '1650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (143, 139, 1, '0.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (144, 140, 1, '0.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (146, 142, 1, '32.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (147, 143, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (148, 144, 1, '0.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (149, 145, 1, '0.0000', NULL, '1490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (150, 146, 1, '0.0000', NULL, '1490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (151, 147, 1, '0.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (152, 148, 1, '0.0000', NULL, '1360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (153, 149, 1, '0.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (154, 150, 1, '2.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (155, 151, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (156, 152, 1, '0.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (157, 153, 1, '0.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (158, 154, 1, '0.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (159, 155, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (160, 156, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (161, 157, 1, '0.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (162, 158, 1, '9.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (163, 159, 1, '12.0000', NULL, '630.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (164, 160, 1, '11.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (165, 161, 1, '7.0000', NULL, '680.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (166, 162, 1, '0.0000', NULL, '970.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (167, 163, 1, '9.0000', NULL, '2751.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (169, 165, 1, '138.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (170, 166, 1, '0.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (171, 167, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (172, 168, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (173, 169, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (174, 170, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (175, 171, 1, '0.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (176, 172, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (177, 173, 1, '0.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (178, 174, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (179, 175, 1, '0.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (180, 176, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (181, 177, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (182, 178, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (183, 179, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (184, 180, 1, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (185, 181, 1, '0.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (186, 182, 1, '0.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (187, 183, 1, '0.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (190, 186, 1, '4.0000', NULL, '1711.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (191, 187, 1, '1.0000', NULL, '1711.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (192, 188, 1, '1.0000', NULL, '1711.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (193, 189, 1, '8.0000', NULL, '2065.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (194, 190, 1, '2.0000', NULL, '2065.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (195, 191, 1, '2.0000', NULL, '2065.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (196, 184, 1, '0.0000', NULL, '1711.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (197, 185, 1, '0.0000', NULL, '2065.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (198, 192, 1, '48.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (199, 193, 1, '42.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (200, 194, 1, '14.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (201, 195, 1, '39.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (202, 196, 1, '48.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (203, 197, 1, '36.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (204, 198, 1, '42.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (205, 199, 1, '24.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (206, 200, 1, '6.0000', NULL, '165.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (207, 201, 1, '6.0000', NULL, '153.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (208, 202, 1, '6.0000', NULL, '165.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (209, 203, 1, '6.0000', NULL, '153.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (210, 204, 1, '12.0000', NULL, '182.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (211, 205, 1, '12.0000', NULL, '182.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (212, 206, 1, '6.0000', NULL, '188.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (213, 207, 1, '6.0000', NULL, '188.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (214, 208, 1, '6.0000', NULL, '200.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (215, 209, 1, '6.0000', NULL, '200.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (216, 210, 1, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (217, 211, 1, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (218, 212, 1, '1.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (220, 214, 1, '2.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (221, 215, 1, '4.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (222, 216, 1, '4.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (223, 217, 1, '6.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (224, 218, 1, '2.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (225, 219, 1, '5.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (226, 220, 1, '5.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (227, 221, 1, '4.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (228, 222, 1, '2.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (229, 223, 1, '4.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (230, 224, 1, '4.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (231, 225, 1, '6.0000', NULL, '295.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (232, 226, 1, '0.0000', NULL, '560.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (233, 227, 1, '0.0000', NULL, '678.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (234, 228, 1, '0.0000', NULL, '767.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (235, 229, 1, '0.0000', NULL, '1003.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (236, 230, 1, '2.0000', NULL, '1121.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (237, 231, 1, '1.0000', NULL, '1357.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (238, 232, 1, '0.0000', NULL, '2950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (239, 233, 1, '0.0000', NULL, '1475.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (241, 235, 1, '2.0000', NULL, '1593.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (242, 236, 1, '1.0000', NULL, '1410.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (243, 237, 1, '0.0000', NULL, '3304.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (244, 238, 1, '0.0000', NULL, '4484.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (245, 239, 1, '0.0000', NULL, '4130.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (246, 240, 1, '0.0000', NULL, '448.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (247, 241, 1, '0.0000', NULL, '424.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (248, 242, 1, '0.0000', NULL, '365.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (249, 243, 1, '0.0000', NULL, '1652.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (250, 244, 1, '0.0000', NULL, '330.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (251, 245, 1, '0.0000', NULL, '2301.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (252, 246, 1, '0.0000', NULL, '330.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (253, 247, 1, '0.0000', NULL, '300.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (254, 248, 1, '0.0000', NULL, '224.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (255, 249, 1, '0.0000', NULL, '236.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (256, 250, 1, '0.0000', NULL, '259.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (257, 251, 1, '0.0000', NULL, '849.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (258, 252, 1, '0.0000', NULL, '1003.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (259, 253, 1, '96.0000', NULL, '177.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (260, 254, 1, '6.0000', NULL, '3280.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (261, 255, 1, '6.0000', NULL, '3186.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (262, 256, 1, '2.0000', NULL, '4967.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (263, 257, 1, '0.0000', NULL, '501.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (264, 258, 1, '0.0000', NULL, '383.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (265, 259, 1, '0.0000', NULL, '367.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (266, 260, 1, '0.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (267, 261, 1, '0.0000', NULL, '210.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (268, 262, 1, '0.0000', NULL, '128.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (269, 263, 1, '5.0000', NULL, '472.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (270, 264, 1, '0.0000', NULL, '2950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (271, 265, 1, '0.0000', NULL, '3540.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (272, 266, 1, '4.0000', NULL, '1003.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (273, 267, 1, '5.0000', NULL, '1062.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (274, 268, 1, '6.0000', NULL, '354.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (275, 269, 1, '57.0000', NULL, '265.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (276, 270, 1, '12.0000', NULL, '531.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (277, 271, 1, '0.0000', NULL, '257.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (278, 272, 1, '119.0000', NULL, '59.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (279, 273, 1, '1.0000', NULL, '944.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (280, 274, 1, '0.0000', NULL, '450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (281, 275, 1, '0.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (282, 276, 1, '0.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (283, 277, 1, '0.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (285, 279, 1, '0.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (287, 281, 1, '0.0000', NULL, '649.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (288, 282, 1, '0.0000', NULL, '1550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (289, 283, 1, '10.0000', NULL, '2300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (292, 286, 1, '6.0000', NULL, '1550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (293, 287, 1, '0.0000', NULL, '1950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (294, 288, 1, '0.0000', NULL, '1950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (295, 289, 1, '0.0000', NULL, '1650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (297, 291, 1, '0.0000', NULL, '2850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (298, 292, 1, '0.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (299, 293, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (300, 294, 1, '1246.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (301, 295, 1, '1816.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (302, 296, 1, '0.0000', NULL, '147.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (303, 297, 1, '0.0000', NULL, '682.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (304, 298, 1, '0.0000', NULL, '461.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (305, 299, 1, '0.0000', NULL, '780.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (306, 300, 1, '0.0000', NULL, '890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (307, 301, 1, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (325, 319, 1, '0.0000', NULL, '1650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (326, 320, 1, '0.0000', NULL, '1650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (327, 321, 1, '0.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (328, 322, 1, '0.0000', NULL, '1550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (329, 323, 1, '9.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (330, 324, 1, '0.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (331, 325, 1, '0.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (332, 326, 1, '0.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (333, 327, 1, '0.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (334, 328, 1, '0.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (335, 329, 1, '9.0000', NULL, '680.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (336, 330, 1, '6.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (337, 331, 1, '11.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (338, 332, 1, '9.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (339, 333, 1, '12.0000', NULL, '2213.3703');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (340, 334, 1, '49.0000', NULL, '720.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (341, 335, 1, '34.0000', NULL, '632.0105');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (342, 336, 1, '20.0000', NULL, '767.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (343, 337, 1, '5.0000', NULL, '3850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (344, 338, 1, '5.0000', NULL, '3850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (345, 339, 1, '10.0000', NULL, '3850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (346, 340, 1, '35.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (347, 341, 1, '11.0000', NULL, '380.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (348, 342, 1, '10.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (349, 343, 1, '4000.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (350, 344, 1, '2002.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (351, 345, 1, '1000.0000', NULL, '38.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (352, 346, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (353, 347, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (354, 348, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (355, 349, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (356, 350, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (357, 351, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (358, 352, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (359, 353, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (360, 354, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (361, 355, 1, '41.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (362, 356, 1, '20.0000', NULL, '690.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (363, 357, 1, '21.0000', NULL, '690.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (364, 358, 1, '18.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (365, 359, 1, '19.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (366, 360, 1, '21.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (367, 361, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (368, 362, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (369, 363, 1, '5.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (370, 364, 1, '2.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (371, 365, 1, '3.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (372, 366, 1, '5.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (373, 367, 1, '2.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (375, 369, 1, '2.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (376, 370, 1, '6.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (377, 371, 1, '3.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (378, 372, 1, '4.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (379, 373, 1, '2.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (380, 374, 1, '2.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (381, 375, 1, '2.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (382, 376, 1, '4.0000', NULL, '1880.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (383, 377, 1, '4.0000', NULL, '890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (384, 378, 1, '5.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (385, 379, 1, '1.0000', NULL, '2290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (386, 380, 1, '10.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (387, 381, 1, '7.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (388, 382, 1, '7.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (390, 384, 1, '1.0000', NULL, '1790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (391, 385, 1, '8.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (392, 386, 1, '11.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (393, 387, 1, '3.0000', NULL, '2390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (394, 388, 1, '2.0000', NULL, '1260.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (395, 389, 1, '1.0000', NULL, '1550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (396, 390, 1, '3.0000', NULL, '1170.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (397, 391, 1, '6.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (398, 392, 1, '5.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (399, 393, 1, '3.0000', NULL, '870.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (400, 394, 1, '4.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (401, 395, 1, '4.0000', NULL, '1480.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (402, 396, 1, '1.0000', NULL, '1590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (403, 397, 1, '1.0000', NULL, '1690.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (404, 398, 1, '1.0000', NULL, '1690.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (405, 399, 1, '1.0000', NULL, '1490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (406, 400, 1, '1.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (407, 401, 1, '22.0000', NULL, '540.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (408, 402, 1, '24.0000', NULL, '540.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (409, 403, 1, '30.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (410, 404, 1, '29.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (411, 405, 1, '7.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (412, 406, 1, '6.0000', NULL, '2200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (413, 407, 1, '0.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (414, 408, 1, '12.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (415, 409, 1, '22.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (416, 410, 1, '23.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (417, 411, 1, '17.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (418, 412, 1, '15.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (419, 413, 1, '13.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (420, 414, 1, '21.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (421, 415, 1, '17.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (422, 416, 1, '16.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (423, 417, 1, '21.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (424, 418, 1, '50.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (425, 419, 1, '50.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (426, 420, 1, '50.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (427, 421, 1, '38.0000', NULL, '1550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (428, 422, 1, '38.0000', NULL, '1550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (429, 423, 1, '40.0000', NULL, '1430.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (430, 424, 1, '30.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (431, 425, 1, '10.0000', NULL, '1590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (432, 426, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (433, 427, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (434, 428, 1, '48.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (435, 429, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (436, 430, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (437, 431, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (438, 432, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (439, 433, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (440, 434, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (441, 435, 1, '12.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (442, 436, 1, '12.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (443, 437, 1, '0.0000', NULL, '1560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (444, 438, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (445, 439, 1, '0.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (446, 440, 1, '12.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (447, 441, 1, '6.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (448, 442, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (449, 443, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (450, 444, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (451, 445, 1, '2.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (452, 446, 1, '12.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (453, 447, 1, '12.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (454, 448, 1, '12.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (455, 449, 1, '12.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (456, 450, 1, '12.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (457, 451, 1, '12.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (458, 452, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (459, 453, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (460, 454, 1, '50.0000', NULL, '840.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (461, 455, 1, '12.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (462, 456, 1, '6.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (463, 457, 1, '6.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (464, 458, 1, '6.0000', NULL, '1140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (465, 459, 1, '6.0000', NULL, '1240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (466, 460, 1, '6.0000', NULL, '1240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (467, 461, 1, '6.0000', NULL, '1240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (468, 462, 1, '6.0000', NULL, '1240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (469, 463, 1, '6.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (470, 464, 1, '6.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (471, 465, 1, '6.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (472, 466, 1, '6.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (473, 467, 1, '6.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (474, 468, 1, '6.0000', NULL, '1850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (475, 469, 1, '12.0000', NULL, '1490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (476, 470, 1, '18.0000', NULL, '1490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (477, 471, 1, '6.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (478, 472, 1, '12.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (479, 473, 1, '24.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (480, 474, 1, '12.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (481, 475, 1, '6.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (482, 476, 1, '12.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (483, 477, 1, '12.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (484, 478, 1, '27.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (485, 479, 1, '27.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (486, 480, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (487, 481, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (488, 482, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (489, 483, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (490, 484, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (491, 485, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (492, 486, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (493, 487, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (494, 488, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (495, 489, 1, '27.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (496, 490, 1, '12.0000', NULL, '145.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (497, 491, 1, '12.0000', NULL, '145.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (498, 492, 1, '6.0000', NULL, '145.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (499, 493, 1, '6.0000', NULL, '145.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (500, 494, 1, '6.0000', NULL, '385.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (501, 495, 1, '6.0000', NULL, '365.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (502, 496, 1, '6.0000', NULL, '365.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (503, 497, 1, '4.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (504, 498, 1, '4.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (506, 500, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (507, 501, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (508, 502, 1, '6.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (509, 503, 1, '6.0000', NULL, '280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (510, 504, 1, '12.0000', NULL, '450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (511, 505, 1, '12.0000', NULL, '225.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (512, 506, 1, '6.0000', NULL, '401.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (513, 507, 1, '1.0000', NULL, '1580.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (514, 508, 1, '6.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (515, 509, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (516, 510, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (517, 511, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (518, 512, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (519, 513, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (520, 514, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (521, 515, 1, '12.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (522, 516, 1, '12.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (523, 517, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (524, 518, 1, '12.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (525, 519, 1, '6.0000', NULL, '1350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (526, 520, 1, '4.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (527, 521, 1, '4.0000', NULL, '1790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (528, 522, 1, '2.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (529, 523, 1, '6.0000', NULL, '1350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (530, 524, 1, '5.0000', NULL, '2150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (531, 525, 1, '8.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (532, 526, 1, '12.0000', NULL, '690.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (533, 527, 1, '12.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (534, 528, 1, '2.0000', NULL, '1380.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (535, 529, 1, '2.0000', NULL, '1590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (536, 530, 1, '3.0000', NULL, '1390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (537, 531, 1, '6.0000', NULL, '1390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (538, 532, 1, '4.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (539, 533, 1, '2.0000', NULL, '2490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (540, 534, 1, '2.0000', NULL, '2190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (541, 535, 1, '2.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (543, 537, 1, '6.0000', NULL, '490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (544, 538, 1, '13.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (545, 539, 1, '4.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (546, 540, 1, '1.0000', NULL, '1390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (547, 541, 1, '2.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (548, 542, 1, '18.0000', NULL, '1490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (549, 543, 1, '5.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (550, 544, 1, '5.0000', NULL, '1690.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (551, 545, 1, '8.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (552, 546, 1, '1.0000', NULL, '1490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (553, 547, 1, '1.0000', NULL, '1390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (554, 548, 1, '2.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (555, 549, 1, '5.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (556, 550, 1, '16.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (557, 551, 1, '2.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (558, 552, 1, '3.0000', NULL, '1950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (559, 553, 1, '3.0000', NULL, '1650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (560, 554, 1, '4.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (561, 555, 1, '4.0000', NULL, '2190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (562, 556, 1, '4.0000', NULL, '1490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (563, 557, 1, '5.0000', NULL, '1590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (564, 558, 1, '2.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (565, 559, 1, '4.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (566, 560, 1, '4.0000', NULL, '1390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (567, 561, 1, '2.0000', NULL, '2650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (568, 562, 1, '2.0000', NULL, '2090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (569, 563, 1, '2.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (570, 564, 1, '6.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (571, 565, 1, '4.0000', NULL, '1390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (572, 566, 1, '4.0000', NULL, '1750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (573, 567, 1, '4.0000', NULL, '1350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (574, 568, 1, '2.0000', NULL, '1350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (575, 569, 1, '2.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (576, 570, 1, '22.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (577, 571, 1, '6.0000', NULL, '490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (578, 572, 1, '19.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (579, 573, 1, '3.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (580, 574, 1, '6.0000', NULL, '1290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (581, 575, 1, '25.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (582, 576, 1, '22.0000', NULL, '450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (583, 577, 1, '23.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (584, 578, 1, '10.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (585, 579, 1, '4.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (586, 580, 1, '4.0000', NULL, '890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (587, 581, 1, '6.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (588, 582, 1, '2.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (589, 583, 1, '2.0000', NULL, '890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (590, 584, 1, '6.0000', NULL, '790.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (591, 585, 1, '6.0000', NULL, '490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (592, 586, 1, '5.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (593, 587, 1, '30.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (594, 588, 1, '3.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (595, 589, 1, '2.0000', NULL, '490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (596, 590, 1, '1.0000', NULL, '1950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (597, 591, 1, '0.0000', NULL, '1650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (598, 592, 1, '1.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (599, 593, 1, '1.0000', NULL, '1750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (600, 594, 1, '1.0000', NULL, '2250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (601, 595, 1, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (602, 596, 1, '0.0000', NULL, '531.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (603, 597, 1, '0.0000', NULL, '696.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (604, 598, 1, '1.0000', NULL, '531.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (605, 599, 1, '2.0000', NULL, '826.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (606, 600, 1, '0.0000', NULL, '531.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (607, 601, 1, '0.0000', NULL, '885.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (608, 602, 1, '0.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (609, 603, 1, '0.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (610, 604, 1, '0.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (611, 605, 1, '1.0000', NULL, '472.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (612, 606, 1, '0.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (613, 607, 1, '0.0000', NULL, '472.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (614, 608, 1, '0.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (615, 609, 1, '0.0000', NULL, '472.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (616, 610, 1, '0.0000', NULL, '472.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (617, 611, 1, '5.0000', NULL, '472.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (618, 612, 1, '0.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (619, 613, 1, '0.0000', NULL, '590.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (620, 614, 1, '0.0000', NULL, '11.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (621, 615, 1, '30.0000', NULL, '148.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (622, 616, 1, '5340.0000', NULL, '15.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (623, 617, 1, '2328.0000', NULL, '56.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (624, 618, 1, '975.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (625, 619, 1, '400.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (626, 620, 1, '101.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (627, 621, 1, '400.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (628, 622, 1, '23.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (629, 623, 1, '13.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (630, 624, 1, '8.0000', NULL, '2190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (631, 625, 1, '5.0000', NULL, '2490.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (632, 626, 1, '5.0000', NULL, '2290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (633, 627, 1, '9.0000', NULL, '2390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (634, 628, 1, '5.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (635, 629, 1, '5.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (636, 630, 1, '1.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (637, 631, 1, '2.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (638, 632, 1, '2.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (639, 633, 1, '2.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (640, 634, 1, '2.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (641, 635, 1, '1.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (642, 636, 1, '1.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (643, 637, 1, '9.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (644, 638, 1, '8.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (645, 639, 1, '12.0000', NULL, '450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (646, 640, 1, '18.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (647, 641, 1, '6.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (648, 642, 1, '3.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (649, 643, 1, '12.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (650, 644, 1, '6.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (651, 645, 1, '12.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (652, 646, 1, '11.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (653, 647, 1, '3.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (654, 648, 1, '6.0000', NULL, '450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (655, 649, 1, '6.0000', NULL, '450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (656, 650, 1, '6.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (657, 651, 1, '6.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (658, 652, 1, '6.0000', NULL, '450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (659, 653, 1, '6.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (660, 654, 1, '7.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (661, 655, 1, '5.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (662, 656, 1, '6.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (663, 657, 1, '6.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (664, 658, 1, '6.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (665, 659, 1, '3.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (666, 660, 1, '6.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (667, 661, 1, '6.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (668, 662, 1, '6.0000', NULL, '1150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (669, 663, 1, '6.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (670, 664, 1, '6.0000', NULL, '1280.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (672, 666, 1, '18.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (673, 667, 1, '6.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (674, 668, 1, '6.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (675, 669, 1, '3.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (676, 670, 1, '3.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (677, 671, 1, '6.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (678, 672, 1, '3.0000', NULL, '1230.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (679, 673, 1, '6.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (680, 674, 1, '6.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (681, 675, 1, '41.0000', NULL, '520.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (682, 676, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (683, 677, 1, '12.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (684, 678, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (685, 679, 1, '15.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (686, 680, 1, '24.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (687, 681, 1, '0.0000', NULL, '1250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (688, 682, 1, '12.0000', NULL, '1050.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (689, 683, 1, '2.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (690, 684, 1, '4.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (691, 685, 1, '3.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (692, 686, 1, '3.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (693, 687, 1, '3.0000', NULL, '340.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (694, 688, 1, '6.0000', NULL, '365.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (695, 689, 1, '6.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (696, 690, 1, '6.0000', NULL, '890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (697, 691, 1, '6.0000', NULL, '1080.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (698, 692, 1, '6.0000', NULL, '1080.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (699, 693, 1, '3.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (700, 694, 1, '6.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (701, 695, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (702, 696, 1, '10.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (703, 697, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (704, 698, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (705, 699, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (706, 700, 1, '12.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (707, 701, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (708, 702, 1, '12.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (709, 703, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (710, 704, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (711, 705, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (712, 706, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (713, 707, 1, '4.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (714, 708, 1, '6.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (715, 709, 1, '7.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (716, 710, 1, '6.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (717, 711, 1, '24.0000', NULL, '375.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (718, 712, 1, '6.0000', NULL, '325.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (719, 713, 1, '6.0000', NULL, '700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (720, 714, 1, '6.0000', NULL, '450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (721, 715, 1, '0.0000', NULL, '650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (722, 716, 1, '0.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (723, 717, 1, '0.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (724, 718, 1, '0.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (725, 719, 1, '0.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (726, 720, 1, '0.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (727, 721, 1, '0.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (728, 722, 1, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (729, 723, 1, '0.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (730, 724, 1, '2.0000', NULL, '520.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (731, 725, 1, '1.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (732, 726, 1, '2.0000', NULL, '950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (733, 727, 1, '1.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (734, 728, 1, '1.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (735, 729, 1, '2.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (736, 730, 1, '1.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (737, 731, 1, '1.0000', NULL, '3150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (738, 732, 1, '1.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (739, 733, 1, '2.0000', NULL, '3200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (740, 734, 1, '1.0000', NULL, '2600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (741, 735, 1, '1.0000', NULL, '1600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (742, 736, 1, '1.0000', NULL, '2600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (743, 737, 1, '1.0000', NULL, '650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (744, 738, 1, '1.0000', NULL, '850.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (745, 739, 1, '1.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (746, 740, 1, '2.0000', NULL, '2950.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (747, 741, 1, '2.0000', NULL, '2800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (748, 742, 1, '1.0000', NULL, '2800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (749, 743, 1, '3.0000', NULL, '360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (750, 744, 1, '2.0000', NULL, '360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (751, 745, 1, '2.0000', NULL, '360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (752, 746, 1, '2.0000', NULL, '360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (753, 747, 1, '3.0000', NULL, '380.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (754, 748, 1, '2.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (755, 749, 1, '4.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (756, 750, 1, '2.0000', NULL, '360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (757, 751, 1, '2.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (758, 752, 1, '2.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (759, 753, 1, '3.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (760, 754, 1, '3.0000', NULL, '560.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (761, 755, 1, '3.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (762, 756, 1, '9.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (763, 757, 1, '1.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (764, 758, 1, '2.0000', NULL, '580.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (765, 759, 1, '2.0000', NULL, '600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (766, 760, 1, '2.0000', NULL, '650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (767, 761, 1, '4.0000', NULL, '650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (768, 762, 1, '1.0000', NULL, '650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (769, 763, 1, '1.0000', NULL, '650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (770, 764, 1, '96.0000', NULL, '220.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (771, 765, 1, '100.0000', NULL, '220.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (772, 766, 1, '95.0000', NULL, '220.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (773, 767, 1, '99.0000', NULL, '360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (774, 768, 1, '96.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (775, 769, 1, '96.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (776, 770, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (777, 771, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (778, 772, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (779, 773, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (780, 774, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (781, 775, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (782, 776, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (783, 777, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (784, 778, 1, '283.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (785, 779, 1, '216.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (786, 780, 1, '1112.0000', NULL, '36.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (787, 781, 1, '576.0000', NULL, '36.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (788, 782, 1, '16.0000', NULL, '276.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (789, 783, 1, '5072.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (790, 784, 1, '4.0000', NULL, '552.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (791, 785, 1, '16.0000', NULL, '276.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (792, 786, 1, '12.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (793, 787, 1, '8.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (794, 788, 1, '7.0000', NULL, '540.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (795, 789, 1, '6.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (796, 790, 1, '3.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (797, 791, 1, '2.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (798, 792, 1, '2.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (799, 793, 1, '5.0000', NULL, '475.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (800, 794, 1, '4.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (801, 795, 1, '4.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (802, 796, 1, '4.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (803, 797, 1, '4.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (804, 798, 1, '6.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (805, 799, 1, '6.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (806, 800, 1, '8.0000', NULL, '600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (807, 801, 1, '3.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (808, 802, 1, '2.0000', NULL, '360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (809, 803, 1, '3.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (810, 804, 1, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (811, 805, 1, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (812, 806, 1, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (813, 807, 1, '4.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (814, 808, 1, '3.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (815, 809, 1, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (816, 810, 1, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (817, 811, 1, '3.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (818, 812, 1, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (819, 813, 1, '7.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (820, 814, 1, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (821, 815, 1, '3.0000', NULL, '700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (822, 816, 1, '4.0000', NULL, '700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (823, 817, 1, '6.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (824, 818, 1, '0.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (825, 819, 1, '0.0000', NULL, '1600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (826, 820, 1, '1.0000', NULL, '1700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (827, 821, 1, '1.0000', NULL, '1700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (828, 819, 2, '2.0000', NULL, '1600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (829, 820, 2, '1.0000', NULL, '1700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (830, 821, 2, '1.0000', NULL, '1700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (831, 788, 2, '7.0000', NULL, '540.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (832, 794, 2, '4.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (833, 800, 2, '8.0000', NULL, '600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (834, 804, 2, '1.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (835, 805, 2, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (836, 806, 2, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (837, 807, 2, '4.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (838, 808, 2, '3.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (839, 809, 2, '1.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (840, 810, 2, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (841, 812, 2, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (842, 813, 2, '1.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (843, 815, 2, '3.0000', NULL, '700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (844, 816, 2, '2.0000', NULL, '700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (845, 818, 2, '2.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (846, 786, 2, '4.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (847, 787, 2, '5.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (848, 789, 2, '6.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (849, 790, 2, '4.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (850, 791, 2, '2.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (851, 792, 2, '2.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (852, 793, 2, '5.0000', NULL, '475.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (853, 795, 2, '4.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (854, 797, 2, '7.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (855, 798, 2, '5.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (856, 799, 2, '6.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (857, 801, 2, '4.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (858, 802, 2, '17.0000', NULL, '360.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (859, 803, 2, '4.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (860, 811, 2, '3.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (861, 578, 2, '1.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (862, 814, 2, '2.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (863, 822, 1, '24.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (864, 822, 2, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (865, 823, 2, '6.0000', NULL, '63.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (866, 823, 1, '0.0000', NULL, '63.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (867, 824, 1, '0.0000', NULL, '63.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (868, 824, 2, '5.0000', NULL, '63.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (869, 825, 1, '0.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (870, 825, 2, '5.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (871, 826, 1, '0.0000', NULL, '121.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (872, 826, 2, '6.0000', NULL, '121.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (873, 827, 1, '0.0000', NULL, '153.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (874, 827, 2, '5.0000', NULL, '153.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (875, 828, 1, '0.0000', NULL, '148.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (876, 828, 2, '4.0000', NULL, '148.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (877, 829, 1, '0.0000', NULL, '148.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (878, 829, 2, '4.0000', NULL, '148.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (879, 830, 1, '5.0000', NULL, '130.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (880, 830, 2, '10.0000', NULL, '130.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (881, 831, 1, '0.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (882, 831, 2, '3.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (883, 832, 1, '6.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (884, 832, 2, '24.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (885, 833, 1, '4.0000', NULL, '324.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (886, 833, 2, '4.0000', NULL, '324.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (887, 834, 1, '0.0000', NULL, '157.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (888, 834, 2, '4.0000', NULL, '157.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (889, 835, 1, '0.0000', NULL, '153.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (890, 835, 2, '2.0000', NULL, '153.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (891, 836, 1, '0.0000', NULL, '157.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (892, 836, 2, '4.0000', NULL, '157.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (893, 837, 1, '0.0000', NULL, '121.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (894, 837, 2, '2.0000', NULL, '121.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (895, 838, 1, '0.0000', NULL, '711.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (896, 838, 2, '3.0000', NULL, '711.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (897, 839, 1, '0.0000', NULL, '297.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (898, 839, 2, '2.0000', NULL, '297.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (899, 840, 1, '0.0000', NULL, '157.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (900, 840, 2, '2.0000', NULL, '157.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (903, 842, 1, '8381.0000', NULL, '13.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (904, 842, 2, '0.0000', NULL, '13.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (905, 843, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (906, 843, 2, '6.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (907, 844, 1, '0.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (908, 844, 2, '5.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (909, 796, 2, '0.0000', NULL, '440.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (910, 401, 2, '12.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (911, 402, 2, '10.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (912, 403, 2, '6.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (913, 404, 2, '7.0000', NULL, '1990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (914, 845, 1, '174.0000', NULL, '120.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (915, 845, 2, '0.0000', NULL, '120.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (916, 846, 1, '803.0000', NULL, '105.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (917, 846, 2, '0.0000', NULL, '105.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (918, 847, 1, '2.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (919, 847, 2, '0.0000', NULL, '400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (920, 848, 1, '2.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (921, 848, 2, '0.0000', NULL, '750.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (922, 849, 1, '2.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (923, 849, 2, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (924, 850, 1, '2.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (925, 850, 2, '0.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (926, 851, 1, '2.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (927, 851, 2, '2.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (928, 852, 1, '5.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (929, 852, 2, '5.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (930, 853, 1, '6.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (931, 853, 2, '0.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (932, 854, 1, '9.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (933, 854, 2, '3.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (934, 855, 1, '5.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (935, 855, 2, '1.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (936, 856, 1, '3.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (937, 856, 2, '3.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (938, 857, 1, '3.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (939, 857, 2, '3.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (940, 858, 1, '3.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (941, 858, 2, '3.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (942, 859, 1, '3.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (943, 859, 2, '3.0000', NULL, '800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (944, 860, 1, '3.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (945, 860, 2, '3.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (946, 861, 1, '4.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (947, 861, 2, '6.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (948, 862, 1, '7.0000', NULL, '225.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (949, 862, 2, '8.0000', NULL, '225.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (950, 863, 1, '4.0000', NULL, '290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (951, 863, 2, '11.0000', NULL, '290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (952, 864, 1, '9.0000', NULL, '225.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (953, 864, 2, '26.0000', NULL, '225.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (954, 292, 2, '12.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (955, 50, 2, '6.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (956, 865, 1, '3.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (957, 865, 2, '26.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (958, 866, 1, '3.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (959, 866, 2, '26.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (960, 867, 1, '0.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (961, 867, 2, '10.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (962, 868, 1, '0.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (963, 868, 2, '10.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (964, 869, 1, '4.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (965, 869, 2, '6.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (966, 870, 1, '0.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (967, 870, 2, '4.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (968, 871, 1, '0.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (969, 871, 2, '4.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (970, 872, 1, '0.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (971, 872, 2, '4.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (972, 873, 1, '0.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (973, 873, 2, '4.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (974, 874, 1, '0.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (975, 874, 2, '4.0000', NULL, '150.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (976, 875, 1, '6125.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (977, 875, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (978, 876, 1, '5484.0000', NULL, '42.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (979, 876, 2, '0.0000', NULL, '42.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (980, 877, 1, '718.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (981, 877, 2, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (982, 878, 1, '372.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (983, 878, 2, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (984, 879, 1, '50.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (985, 879, 2, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (986, 880, 1, '120.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (987, 880, 2, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (988, 881, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (989, 881, 2, '24.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (990, 882, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (991, 882, 2, '12.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (992, 768, 2, '0.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (993, 769, 2, '0.0000', NULL, '215.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (994, 883, 1, '6.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (995, 883, 2, '12.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (996, 884, 1, '18.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (997, 884, 2, '12.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (998, 57, 2, '0.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (999, 885, 1, '15.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1000, 885, 2, '0.0000', NULL, '1450.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1001, 886, 1, '15.0000', NULL, '630.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1002, 886, 2, '0.0000', NULL, '630.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1003, 887, 1, '12.0000', NULL, '1660.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1004, 887, 2, '0.0000', NULL, '1660.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1005, 888, 1, '30.0000', NULL, '1999.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1006, 888, 2, '0.0000', NULL, '1999.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1007, 300, 2, '0.0000', NULL, '890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1008, 301, 2, '0.0000', NULL, '990.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1009, 407, 2, '0.0000', NULL, '1090.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1010, 889, 1, '10.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1011, 889, 2, '0.0000', NULL, '1190.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1012, 890, 1, '30.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1013, 890, 2, '0.0000', NULL, '1890.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1014, 891, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1015, 891, 2, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1016, 892, 1, '0.0000', NULL, '650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1017, 892, 2, '0.0000', NULL, '650.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1018, 893, 1, '0.0000', NULL, '290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1019, 893, 2, '0.0000', NULL, '290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1020, 894, 1, '0.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1021, 894, 2, '0.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1022, 895, 1, '0.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1023, 895, 2, '0.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1024, 896, 1, '0.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1025, 896, 2, '0.0000', NULL, '390.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1026, 897, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1027, 897, 2, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1028, 898, 1, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1029, 898, 2, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1030, 899, 1, '0.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1031, 899, 2, '0.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1032, 900, 1, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1033, 900, 2, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1034, 901, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1035, 901, 2, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1036, 902, 1, '0.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1037, 902, 2, '0.0000', NULL, '240.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1038, 903, 1, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1039, 903, 2, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1040, 904, 1, '14.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1041, 904, 2, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1042, 905, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1043, 905, 2, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1044, 906, 1, '3.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1045, 906, 2, '12.0000', NULL, '550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1046, 907, 1, '0.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1047, 907, 2, '0.0000', NULL, '300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1048, 908, 1, '3.0000', NULL, '290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1049, 908, 2, '0.0000', NULL, '290.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1050, 909, 1, '9.0000', NULL, '749.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1051, 909, 2, '0.0000', NULL, '749.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1052, 910, 1, '0.0000', NULL, '861.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1053, 910, 2, '0.0000', NULL, '861.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1054, 620, 2, '42.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1055, 911, 1, '6379.0000', NULL, '5.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1056, 911, 2, '0.0000', NULL, '5.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1057, 333, 2, '0.0000', NULL, '635.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1058, 335, 2, '0.0000', NULL, '593.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1059, 334, 2, '0.0000', NULL, '720.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1060, 912, 1, '26.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1061, 912, 2, '0.0000', NULL, '100.0000');


#
# TABLE STRUCTURE FOR: sma_warehouses_products_variants
#

DROP TABLE IF EXISTS `sma_warehouses_products_variants`;

CREATE TABLE `sma_warehouses_products_variants` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `option_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `rack` varchar(55) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `option_id` (`option_id`),
  KEY `product_id` (`product_id`),
  KEY `warehouse_id` (`warehouse_id`)
) ENGINE=InnoDB AUTO_INCREMENT=418 DEFAULT CHARSET=utf8;

INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (9, 1, 1, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (10, 8, 4, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (11, 9, 4, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (12, 10, 4, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (13, 11, 5, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (14, 12, 5, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (15, 13, 4, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (16, 14, 7, 1, '39.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (17, 15, 8, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (18, 16, 9, 1, '22.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (19, 17, 10, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (20, 18, 10, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (21, 19, 10, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (22, 20, 10, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (23, 21, 10, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (24, 22, 11, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (25, 23, 11, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (26, 24, 12, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (27, 25, 12, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (28, 26, 12, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (29, 27, 12, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (30, 28, 12, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (31, 29, 12, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (32, 30, 12, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (33, 31, 12, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (34, 32, 13, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (35, 33, 13, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (36, 34, 13, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (37, 35, 13, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (38, 36, 13, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (39, 37, 13, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (40, 38, 14, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (41, 39, 14, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (42, 40, 14, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (43, 41, 14, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (44, 42, 14, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (45, 43, 15, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (46, 44, 15, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (47, 45, 15, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (48, 46, 15, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (57, 55, 17, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (62, 60, 19, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (63, 61, 19, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (64, 62, 20, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (65, 63, 20, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (66, 64, 20, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (67, 65, 21, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (68, 66, 22, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (69, 67, 22, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (70, 68, 23, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (71, 69, 15, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (72, 70, 15, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (73, 71, 24, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (74, 72, 24, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (75, 73, 24, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (76, 74, 24, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (77, 75, 25, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (78, 76, 25, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (79, 77, 25, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (80, 78, 25, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (81, 79, 26, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (82, 80, 26, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (83, 81, 27, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (84, 82, 27, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (85, 83, 28, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (86, 84, 29, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (87, 85, 29, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (88, 86, 30, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (90, 88, 32, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (91, 89, 32, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (92, 90, 32, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (93, 91, 33, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (94, 92, 33, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (95, 93, 34, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (96, 94, 34, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (97, 95, 17, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (98, 96, 17, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (99, 97, 17, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (100, 98, 17, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (101, 99, 17, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (102, 100, 17, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (103, 101, 17, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (104, 102, 17, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (105, 103, 35, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (106, 104, 35, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (107, 105, 35, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (108, 106, 35, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (109, 107, 35, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (110, 108, 35, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (111, 109, 35, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (112, 110, 35, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (113, 111, 35, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (114, 112, 36, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (115, 113, 36, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (116, 114, 36, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (117, 115, 19, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (118, 116, 19, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (119, 117, 19, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (120, 118, 19, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (121, 119, 37, 1, '40.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (122, 120, 38, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (123, 121, 38, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (124, 122, 38, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (125, 123, 38, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (126, 124, 38, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (127, 125, 39, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (128, 126, 39, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (129, 127, 39, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (130, 128, 39, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (131, 129, 40, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (132, 130, 40, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (133, 131, 40, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (134, 132, 41, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (135, 133, 41, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (136, 134, 41, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (137, 135, 41, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (138, 136, 42, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (139, 137, 42, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (140, 138, 42, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (141, 139, 42, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (142, 140, 43, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (143, 141, 43, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (144, 142, 43, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (145, 143, 43, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (146, 144, 44, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (147, 145, 44, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (148, 146, 44, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (149, 147, 44, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (150, 148, 45, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (151, 149, 45, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (152, 150, 44, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (153, 151, 46, 1, '41.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (154, 152, 47, 1, '40.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (155, 153, 48, 1, '42.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (156, 154, 49, 1, '36.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (157, 155, 50, 1, '37.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (158, 156, 51, 1, '40.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (159, 157, 52, 1, '42.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (160, 158, 53, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (161, 159, 54, 1, '20.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (162, 160, 55, 1, '26.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (163, 161, 56, 1, '28.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (164, 162, 57, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (165, 163, 58, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (166, 164, 58, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (167, 165, 58, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (168, 166, 59, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (169, 167, 59, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (170, 168, 59, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (171, 169, 59, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (172, 170, 59, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (173, 171, 60, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (174, 172, 60, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (175, 173, 61, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (176, 174, 61, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (177, 175, 62, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (178, 176, 63, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (179, 177, 63, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (180, 178, 64, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (181, 179, 64, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (182, 180, 65, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (183, 181, 65, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (184, 182, 65, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (185, 183, 65, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (186, 184, 66, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (187, 185, 66, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (188, 186, 66, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (189, 187, 67, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (190, 188, 67, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (191, 189, 68, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (192, 190, 69, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (193, 191, 69, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (194, 192, 70, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (195, 193, 71, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (196, 194, 71, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (197, 195, 72, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (198, 196, 73, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (199, 197, 73, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (200, 198, 73, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (201, 199, 74, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (202, 200, 74, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (203, 201, 74, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (204, 202, 75, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (205, 203, 75, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (206, 204, 75, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (207, 205, 76, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (208, 206, 76, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (209, 207, 76, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (210, 208, 76, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (211, 209, 76, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (212, 210, 76, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (213, 211, 76, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (214, 212, 76, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (215, 213, 77, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (216, 214, 77, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (217, 215, 77, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (218, 216, 78, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (219, 217, 78, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (220, 218, 78, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (221, 219, 79, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (222, 220, 80, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (223, 221, 81, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (224, 222, 81, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (225, 223, 81, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (226, 224, 81, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (227, 225, 81, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (228, 226, 81, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (229, 227, 82, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (230, 228, 82, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (231, 229, 82, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (232, 230, 82, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (233, 231, 82, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (234, 232, 82, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (235, 233, 82, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (236, 234, 83, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (237, 235, 83, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (245, 243, 85, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (246, 244, 85, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (247, 245, 85, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (248, 246, 85, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (249, 247, 85, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (250, 248, 85, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (251, 249, 85, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (252, 250, 85, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (253, 251, 86, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (254, 252, 87, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (255, 253, 87, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (256, 254, 87, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (257, 255, 87, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (258, 256, 88, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (259, 257, 88, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (260, 258, 88, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (261, 259, 88, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (262, 260, 89, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (263, 261, 90, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (264, 262, 90, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (265, 263, 91, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (266, 264, 91, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (267, 265, 91, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (268, 266, 91, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (269, 267, 91, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (270, 268, 92, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (271, 269, 93, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (272, 270, 94, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (275, 273, 96, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (276, 274, 96, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (277, 275, 97, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (278, 276, 97, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (279, 277, 98, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (280, 278, 99, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (281, 279, 100, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (282, 280, 101, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (283, 281, 101, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (284, 282, 102, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (285, 283, 103, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (286, 284, 104, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (287, 285, 104, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (288, 286, 105, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (289, 287, 105, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (290, 288, 106, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (291, 289, 106, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (292, 290, 107, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (293, 291, 107, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (294, 292, 108, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (295, 293, 108, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (296, 294, 109, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (297, 295, 109, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (298, 296, 110, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (299, 297, 110, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (300, 298, 111, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (301, 299, 111, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (302, 300, 112, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (303, 301, 112, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (304, 302, 113, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (305, 303, 113, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (310, 308, 115, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (311, 309, 115, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (312, 310, 115, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (313, 311, 115, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (314, 312, 115, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (315, 313, 116, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (316, 314, 116, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (317, 315, 116, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (318, 316, 116, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (319, 317, 116, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (320, 318, 117, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (321, 319, 117, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (322, 320, 117, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (323, 321, 117, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (324, 322, 118, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (325, 323, 118, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (326, 324, 118, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (327, 325, 119, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (328, 326, 120, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (329, 327, 121, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (330, 328, 122, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (331, 329, 123, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (332, 330, 124, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (333, 331, 125, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (334, 332, 126, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (335, 333, 127, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (336, 334, 128, 1, '24.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (337, 335, 128, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (338, 336, 128, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (339, 337, 128, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (340, 338, 129, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (341, 339, 129, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (342, 340, 129, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (343, 341, 129, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (344, 342, 129, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (345, 343, 129, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (352, 350, 131, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (353, 351, 131, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (354, 352, 131, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (355, 353, 131, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (356, 354, 131, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (357, 355, 131, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (358, 356, 132, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (359, 357, 132, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (360, 358, 132, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (361, 359, 133, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (362, 360, 134, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (363, 361, 135, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (364, 362, 135, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (365, 363, 134, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (366, 364, 136, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (367, 365, 136, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (368, 366, 137, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (369, 367, 137, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (370, 368, 138, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (371, 369, 59, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (372, 370, 139, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (373, 371, 139, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (374, 372, 139, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (375, 373, 140, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (376, 374, 140, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (377, 375, 140, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (380, 378, 142, 1, '32.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (381, 379, 143, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (382, 380, 143, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (383, 381, 144, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (384, 382, 144, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (385, 383, 145, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (386, 384, 146, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (387, 385, 147, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (388, 386, 148, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (389, 387, 149, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (390, 388, 150, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (391, 389, 151, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (392, 390, 152, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (393, 391, 153, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (394, 392, 154, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (395, 393, 155, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (396, 394, 156, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (397, 395, 157, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (398, 396, 158, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (399, 397, 159, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (400, 398, 160, 1, '11.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (401, 399, 161, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (402, 400, 162, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (403, 401, 163, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (404, 402, 163, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (405, 403, 163, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (407, 405, 165, 1, '138.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (408, 406, 166, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (409, 407, 166, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (410, 408, 14, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (411, 409, 25, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (412, 410, 480, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (413, 411, 480, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (414, 412, 481, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (415, 413, 481, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (416, 414, 587, 1, '30.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (417, 155, 50, 2, '6.0000', NULL);


